diff --git a/change-log.txt b/change-log.txt index 2f84ef9900..9644fb2380 100644 --- a/change-log.txt +++ b/change-log.txt @@ -1,6 +1,23 @@ Subtitle Edit Changelog +v5.1.0-beta5 (TBD) + +* Add copy/paste support to the time code boxes (a bare number is milliseconds) - thx RobertoHN +* OCR: select the just-downloaded spell-check dictionary on any UI language +* Spell check: clean up dictionary names with variant suffixes (e.g. de_DE_frami) +* Fix keyboard shortcuts in "Adjust all times" not working, now moving 1 frame / 10 frames / 1 second - thx KaDeeKe +* Fix up/down time code and duration stepping in frame mode not wrapping frames correctly - thx KaDeeKe +* Fix invalid PTS/DTS in exported Blu-ray sup files (broke SupMover negative delay) - thx GCRaistlin/MonoS +* Fix batch convert forgetting settings when the window is closed via X/Escape - thx MonsterSe7en +* Fix batch convert llama.cpp auto-start never running +* Fix crash when pasting an out-of-range value into a time code box +* Fix stale RTL text-box selection anchor after mouse/native selection changes - thx muaz978 +* Fix change detection not including the original subtitle file name +* Update Korean translation - thx 12si27 + +----------------------------------------------------------------------------------------------------- + v5.1.0-beta4 (1st of July 2026) * Add CSV import/export to Multiple replace - thx faon-92 diff --git a/src/ui/Assets/Languages/English.json b/src/ui/Assets/Languages/English.json index b4c641a655..ef3d8cf91b 100644 --- a/src/ui/Assets/Languages/English.json +++ b/src/ui/Assets/Languages/English.json @@ -1,6 +1,6 @@ { "title": "Subtitle Edit", - "version": "v5.1.0-beta4", + "version": "v5.1.0-beta5", "translatedBy": "", "cultureName": "en-US", "general": { diff --git a/src/ui/Logic/Config/Se.cs b/src/ui/Logic/Config/Se.cs index 7841696913..19f16b0c89 100644 --- a/src/ui/Logic/Config/Se.cs +++ b/src/ui/Logic/Config/Se.cs @@ -17,7 +17,7 @@ public class Se { internal const int CurrentMacOsFontMigrationVersion = 1; - public static string Version { get; set; } = "v5.1.0-beta4"; + public static string Version { get; set; } = "v5.1.0-beta5"; public SeGeneral General { get; set; } = new(); public List Shortcuts { get; set; } = new();