From 90797d6dd92fd33c14f183e5661441722742e972 Mon Sep 17 00:00:00 2001 From: MiTHRAL Date: Fri, 24 Apr 2026 15:36:44 -0400 Subject: [PATCH] chore: bump version to 1.0.3 and clarify tagging mandate --- GEMINI.md | 4 ++-- avia_core/headliner.js | 4 ++-- package.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/GEMINI.md b/GEMINI.md index 0d8b084..f7a1bbc 100644 --- a/GEMINI.md +++ b/GEMINI.md @@ -6,7 +6,7 @@ Before every `git push` that includes code changes, you MUST perform the followi 1. **Bump Version:** Increment the version in `package.json` (both `version` and `aviaVersion`). 2. **Update Branding:** If a version string is hardcoded in UI plugins (like `avia_core/headliner.js`), update it to match the new version. 3. **Migration Logic:** Update any migration logic in plugins to ensure users on the previous version are automatically updated to the new default. -4. **Tagging:** Create or move the git tag corresponding to the new version (e.g., `git tag -f 1.0.x`). -5. **Push:** Push both the branch and the tags to the remote repository (`git push origin main --force --tags`). +4. **Tagging:** Create the git tag corresponding to the new version with a 'v' prefix (e.g., `git tag v1.0.x`). +5. **Push:** Push both the branch and the tags to the remote repository (`git push origin main --tags`). This ensures the internal app state matches the release tag and prevents auto-updater loops. diff --git a/avia_core/headliner.js b/avia_core/headliner.js index 2ca89f5..421551f 100644 --- a/avia_core/headliner.js +++ b/avia_core/headliner.js @@ -9,7 +9,7 @@ const STYLE_ID = "headliner-style"; const defaults = { - content: "Sanctum V 1.0.2", + content: "Sanctum V 1.0.3", left: "32", top: "56", fontSize: "15", @@ -19,7 +19,7 @@ function loadSettings() { try { let s = JSON.parse(localStorage.getItem("headlinerSettings")); - if (s && (s.content === "Stoat V 1.0.0 - Sanctum" || s.content === "Sanctum V 1.0.0" || s.content === "Sanctum V 1.0.1")) { + if (s && (s.content === "Stoat V 1.0.0 - Sanctum" || s.content === "Sanctum V 1.0.0" || s.content === "Sanctum V 1.0.1" || s.content === "Sanctum V 1.0.2")) { s.content = defaults.content; saveSettings(s); } diff --git a/package.json b/package.json index 300ce0e..52650fc 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "sanctum", "productName": "Sanctum", - "version": "1.0.2", - "aviaVersion": "1.0.2", + "version": "1.0.3", + "aviaVersion": "1.0.3", "main": ".vite/build/main.js", "repository": "https://git.mithraic.cloud/ad3laid3/sanctum", "scripts": {