From 58deb1402867a455bfee02de6dfbb8c458832272 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 4 Sep 2025 16:18:11 +1000 Subject: [PATCH 1/5] Ensure the newly-spawned terminal doesn't inherit the env var It seems like the open call was leaking it into the newly spawned process. Follow-up fix to 2491eb0316283abe010a0e908b4dab17c5dba37f --- qt/launcher/src/platform/mac.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/qt/launcher/src/platform/mac.rs b/qt/launcher/src/platform/mac.rs index 8662ba9f5..3f5b0ce2e 100644 --- a/qt/launcher/src/platform/mac.rs +++ b/qt/launcher/src/platform/mac.rs @@ -64,6 +64,7 @@ pub fn relaunch_in_terminal() -> Result<()> { Command::new("open") .args(["-na", "Terminal"]) .arg(current_exe) + .env_remove("ANKI_LAUNCHER_WANT_TERMINAL") .ensure_spawn()?; std::process::exit(0); } From 3b0297d14d3df2844b45504188452c1d86ec7b97 Mon Sep 17 00:00:00 2001 From: Lukas Sommer Date: Sat, 6 Sep 2025 11:15:42 +0000 Subject: [PATCH 2/5] Update deck-config.ftl (#4319) --- ftl/core/deck-config.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftl/core/deck-config.ftl b/ftl/core/deck-config.ftl index e365d9553..1e193dc04 100644 --- a/ftl/core/deck-config.ftl +++ b/ftl/core/deck-config.ftl @@ -498,7 +498,7 @@ deck-config-desired-retention-below-optimal = Your desired retention is below op # cards that can be recalled or retrieved on a specific date. deck-config-fsrs-simulator-experimental = FSRS Simulator (Experimental) deck-config-fsrs-simulate-desired-retention-experimental = FSRS Desired Retention Simulator (Experimental) -deck-config-fsrs-simulate-save-preset = After optimizing, please save your config before running the simulator. +deck-config-fsrs-simulate-save-preset = After optimizing, please save your deck preset before running the simulator. deck-config-fsrs-desired-retention-help-me-decide-experimental = Help Me Decide (Experimental) deck-config-additional-new-cards-to-simulate = Additional new cards to simulate deck-config-simulate = Simulate From cf12c201d8a68575dd1695912ab5392c0935a566 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 6 Sep 2025 21:16:13 +1000 Subject: [PATCH 3/5] Update translations --- ftl/core-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftl/core-repo b/ftl/core-repo index d255301b5..6552c95a8 160000 --- a/ftl/core-repo +++ b/ftl/core-repo @@ -1 +1 @@ -Subproject commit d255301b5a815ebac73c380b48507440d2f5dcce +Subproject commit 6552c95a81d162422b2a50126547cc7f1b50c2fd From 539054c34dccf8b89ca7ea9c9c40ecaf172de759 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 6 Sep 2025 21:17:08 +1000 Subject: [PATCH 4/5] Bump version --- .version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.version b/.version index 280125b32..834db75c6 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -25.09rc1 +25.09 From 4506ad0c97dc543b2142bf9ee8f9717e92eab1fd Mon Sep 17 00:00:00 2001 From: jcznk <60730312+jcznk@users.noreply.github.com> Date: Sun, 14 Sep 2025 19:44:16 +0200 Subject: [PATCH 5/5] Prevent clipping for QPushButton:default (#4323) --- qt/aqt/stylesheets.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/qt/aqt/stylesheets.py b/qt/aqt/stylesheets.py index 6b4eff1f5..6817b7063 100644 --- a/qt/aqt/stylesheets.py +++ b/qt/aqt/stylesheets.py @@ -180,7 +180,7 @@ class CustomStyles: QPushButton {{ margin: 1px; }} - QPushButton:focus {{ + QPushButton:focus, QPushButton:default:hover {{ border: 2px solid {tm.var(colors.BORDER_FOCUS)}; outline: none; margin: 0px; @@ -199,9 +199,6 @@ class CustomStyles: ) }; }} - QPushButton:default:hover {{ - border-width: 2px; - }} QPushButton:pressed, QPushButton:checked, QSpinBox::up-button:pressed,