Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisFeline committed Oct 12, 2024
1 parent d8df068 commit 20124af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
- The custom sound notifications in settings have been reworked too.
- The 'Auto Copy' feature will also play an audio if the 'Play Audio on Copy' setting is enabled.
- Fixed OSC colors for Double Trouble.
- Stats for the chatbox is now stored in the correct location.
- Reworked the Automatic Updates.
- Updated Traditional Chinese localization (Thank you @XoF-eLtTiL)
3 changes: 2 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ static void Main(string[] args)
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
Thread.CurrentThread.CurrentUICulture = CultureInfo.InvariantCulture;

if (!Directory.Exists(DataLocation)) Directory.CreateDirectory(DataLocation);

LANG.Initialize();
Updater.CheckPostUpdate(args);

Expand All @@ -70,7 +72,6 @@ static void Main(string[] args)
Application.SetCompatibleTextRenderingDefault(true);
InitializeFont();

if (!Directory.Exists(DataLocation)) Directory.CreateDirectory(DataLocation);
MainWindow.Started = false;

if (!StartCheckForUpdate()) {
Expand Down

0 comments on commit 20124af

Please sign in to comment.