diff --git a/README.md b/README.md index c222738..5507130 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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] diff --git a/src/metadata.json b/src/metadata.json index cf57a9d..ac76f8c 100644 --- a/src/metadata.json +++ b/src/metadata.json @@ -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" } diff --git a/src/shared/constants/platform.js b/src/shared/constants/platform.js index 03b4889..f500760 100644 --- a/src/shared/constants/platform.js +++ b/src/shared/constants/platform.js @@ -14,6 +14,7 @@ export const SUPPORTED_GNOME_SHELL_VERSIONS = Object.freeze([ "48", "49", "50", + "51", ]); /** Minimum Libadwaita version required by preferences widgets. */ diff --git a/tests/core.test.mjs b/tests/core.test.mjs index 6e6fe54..445d3f9 100644 --- a/tests/core.test.mjs +++ b/tests/core.test.mjs @@ -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);