Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions change-log.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/ui/Assets/Languages/English.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Subtitle Edit",
"version": "v5.1.0-beta4",
"version": "v5.1.0-beta5",
"translatedBy": "",
"cultureName": "en-US",
"general": {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/Logic/Config/Se.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<SeShortCut> Shortcuts { get; set; } = new();
Expand Down