diff --git a/public/media/whats-new/poster.webp b/public/media/whats-new/poster.webp index 1eb80b1..1cab640 100644 Binary files a/public/media/whats-new/poster.webp and b/public/media/whats-new/poster.webp differ diff --git a/public/media/whats-new/video.mp4 b/public/media/whats-new/video.mp4 index cb25174..8f7abc3 100644 Binary files a/public/media/whats-new/video.mp4 and b/public/media/whats-new/video.mp4 differ diff --git a/public/media/whats-new/video.webm b/public/media/whats-new/video.webm index 717713a..f07befc 100644 Binary files a/public/media/whats-new/video.webm and b/public/media/whats-new/video.webm differ diff --git a/src/release-notes/stable.json b/src/release-notes/stable.json index 5a9bdf8..0d99899 100644 --- a/src/release-notes/stable.json +++ b/src/release-notes/stable.json @@ -2821,5 +2821,31 @@ "workflowId": 15668398583, "image": false, "date": "16/06/2025" + }, + { + "version": "1.14b", + "extra": "This update includes a nice upgrade to the color picker and some nice fixes!\n\nIMPORTANT: Previous colors might have issues, to update them, right click the sidebar and click on 'edit theme'", + "fixes": [ + "Fixed visual twitching when cancelling a drag-to-split operation.", + "Resolved an issue with tab switching when tabs overflow the toolbar." + ], + "features": [ + "Upgraded to Firefox 140.0.2.", + "Introduced a refreshed look and feel for the color picker.", + "Added automatic dark/light mode detection based on the browser's background.", + "Improved gradient rendering to reduce dithering artifacts.", + "Moved mods to a C++ backend for enhanced performance, stability, and caching.", + "Made workspace swiping smoother with animated background transitions and improved responsiveness.", + "Simplified the compact mode toggle: now a single button replaces the previous submenu in single-toolbar setups.", + "The Add-ons button can now be removed from the toolbar." + ], + "changes": [ + "Legacy customization styles are now disabled by default for new users unless a `userChrome.css` file is present.", + "New user profiles now have container-specific essentials enabled by default." + ], + "security": "https://www.mozilla.org/en-US/security/advisories/mfsa2025-51/", + "workflowId": 15953789168, + "image": false, + "date": "29/06/2025" } ] diff --git a/src/release-notes/twilight.json b/src/release-notes/twilight.json index f0ac5cc..9b790ad 100644 --- a/src/release-notes/twilight.json +++ b/src/release-notes/twilight.json @@ -1,6 +1,6 @@ { - "version": "1.12.11t", - "extra": "This update includes some attempts at performance improvements, better workspace management and some bug fixes!", + "version": "xxx", + "extra": "", "fixes": [], "features": [] } diff --git a/src/release-notes/whats-new.json b/src/release-notes/whats-new.json index ff2ac3e..52a3241 100644 --- a/src/release-notes/whats-new.json +++ b/src/release-notes/whats-new.json @@ -1 +1,4 @@ -["This update includes a nice upgrade to workspace management and some nice fixes!", "1.13.2b"] +[ + "This update includes a nice upgrade to the color picker and some nice fixes!\n\nIMPORTANT: Previous colors might have issues, to update them, right click the sidebar and click on 'edit theme'", + "1.14b" +] diff --git a/turbo.json b/turbo.json index 643b153..0e97845 100644 --- a/turbo.json +++ b/turbo.json @@ -18,6 +18,7 @@ }, "build": { "cache": true, + "inputs": ["src"], "outputs": ["dist/**"] }, "test": { @@ -27,13 +28,13 @@ }, "spell": { "cache": true, - "inputs": ["src/**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml}"], + "inputs": ["**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml}"], "outputs": [] }, "test:playwright": { "cache": true, "dependsOn": ["build"], - "inputs": ["**/*.{ts,tsx,js,jsx,astro}"], + "inputs": ["src"], "outputs": ["playwright-report/**", "test-results/**"] } },