Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A GNOME extension that adds configurable MPRIS media controls to the top bar.

[![Platform](https://img.shields.io/badge/linux-platform?style=for-the-badge&logo=linux&logoColor=white&label=platform&labelColor=21262D&color=6E7681)](https://www.kernel.org)
[![GNOME](https://img.shields.io/badge/47%E2%80%9350-versions?style=for-the-badge&logo=gnome&logoColor=white&label=GNOME&labelColor=21262D&color=3584E4)](https://www.gnome.org)
[![GNOME](https://img.shields.io/badge/47%E2%80%9351-versions?style=for-the-badge&logo=gnome&logoColor=white&label=GNOME&labelColor=21262D&color=3584E4)](https://www.gnome.org)
[![Release](https://img.shields.io/github/v/release/WSTxda/MediaShell?display_name=release&style=for-the-badge&logo=github&labelColor=21262D&color=1F6FEB)](https://github.com/WSTxda/MediaShell/releases/latest)
[![Downloads](https://img.shields.io/github/downloads/WSTxda/MediaShell/total?style=for-the-badge&labelColor=21262d&color=238636)](https://github.com/WSTxda/MediaShell/releases)

Expand Down Expand Up @@ -98,7 +98,7 @@ MediaShell is a GNOME Shell extension that adds configurable MPRIS media control

## Requirements

- **GNOME Shell** 47–50
- **GNOME Shell** 47–51
- An **MPRIS-compatible** media app or browser media session

> [!IMPORTANT]
Expand Down
2 changes: 1 addition & 1 deletion src/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"settings-schema": "org.gnome.shell.extensions.mediashell",
"gettext-domain": "mediashell@wstxda.github.com",
"version-name": "2.1.0",
"shell-version": ["47", "48", "49", "50"],
"shell-version": ["47", "48", "49", "50", "51"],
"donations": {
"buymeacoffee": "wstxda"
}
Expand Down
1 change: 1 addition & 0 deletions src/shared/constants/platform.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const SUPPORTED_GNOME_SHELL_VERSIONS = Object.freeze([
"48",
"49",
"50",
"51",
]);

/** Minimum Libadwaita version required by preferences widgets. */
Expand Down
1 change: 1 addition & 0 deletions tests/core.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ test("core utilities preserve bounded, deterministic behavior", async () => {
"48",
"49",
"50",
"51",
]);
assert.deepEqual(MINIMUM_LIBADWAITA_VERSION, { major: 1, minor: 6 });
assert.equal(isVersionAtLeast(1, 5), false);
Expand Down