From 377a8aac5c6cade75ba25b960cd9db41c31c8894 Mon Sep 17 00:00:00 2001 From: Daniel Banariba Date: Mon, 30 Mar 2026 21:52:53 -0600 Subject: [PATCH] fix: add GNOME Shell 47-49 to supported versions metadata.json only declared shell-version 45 and 46, causing GNOME Shell 47+ to silently ignore the extension. Users on newer versions see "Extension does not exist" when trying to enable. Closes #1 --- README.md | 4 ++-- extension/metadata.json | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 69293b7..c719584 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ GNOME Shell extension that tracks your AI usage limits for **Claude** (Anthropic) and **Codex/ChatGPT** (OpenAI) and displays remaining percentages in the top panel. -![GNOME Shell 45+](https://img.shields.io/badge/GNOME_Shell-45%20%7C%2046-blue) +![GNOME Shell 45+](https://img.shields.io/badge/GNOME_Shell-45--49-blue) ![License: MIT](https://img.shields.io/badge/License-MIT-green) ## Features @@ -16,7 +16,7 @@ GNOME Shell extension that tracks your AI usage limits for **Claude** (Anthropic ## Prerequisites -- GNOME Shell 45 or 46 +- GNOME Shell 45 to 49 - Active [Claude](https://claude.ai) and/or [Codex](https://chatgpt.com) accounts with OAuth credentials on disk: - Claude: `~/.claude/.credentials.json` - Codex: `~/.codex/auth.json` diff --git a/extension/metadata.json b/extension/metadata.json index dac6af3..fa0d08e 100644 --- a/extension/metadata.json +++ b/extension/metadata.json @@ -5,7 +5,10 @@ "version": 1, "shell-version": [ "45", - "46" + "46", + "47", + "48", + "49" ], "settings-schema": "org.gnome.shell.extensions.brainusage" }