Merge branch 'main' into renovate/react

This commit is contained in:
Shintaro Jokagi 2025-06-30 12:20:36 +12:00 committed by GitHub
commit aeb456b459
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 35 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Before After
Before After

Binary file not shown.

Binary file not shown.

View file

@ -2821,5 +2821,31 @@
"workflowId": 15668398583, "workflowId": 15668398583,
"image": false, "image": false,
"date": "16/06/2025" "date": "16/06/2025"
},
{
"version": "1.14b",
"extra": "This update includes a nice upgrade to the color picker and some nice fixes!\n\n<strong class='underline'>IMPORTANT:</strong> 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"
} }
] ]

View file

@ -1,6 +1,6 @@
{ {
"version": "1.12.11t", "version": "xxx",
"extra": "This update includes some attempts at performance improvements, better workspace management and some bug fixes!", "extra": "",
"fixes": [], "fixes": [],
"features": [] "features": []
} }

View file

@ -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\n<strong class='underline'>IMPORTANT:</strong> Previous colors might have issues, to update them, right click the sidebar and click on 'edit theme'",
"1.14b"
]

View file

@ -18,6 +18,7 @@
}, },
"build": { "build": {
"cache": true, "cache": true,
"inputs": ["src"],
"outputs": ["dist/**"] "outputs": ["dist/**"]
}, },
"test": { "test": {
@ -27,13 +28,13 @@
}, },
"spell": { "spell": {
"cache": true, "cache": true,
"inputs": ["src/**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml}"], "inputs": ["**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml}"],
"outputs": [] "outputs": []
}, },
"test:playwright": { "test:playwright": {
"cache": true, "cache": true,
"dependsOn": ["build"], "dependsOn": ["build"],
"inputs": ["**/*.{ts,tsx,js,jsx,astro}"], "inputs": ["src"],
"outputs": ["playwright-report/**", "test-results/**"] "outputs": ["playwright-report/**", "test-results/**"]
} }
}, },