diff --git a/CHANGELOG.md b/CHANGELOG.md index d03f753..b06c68a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,17 @@ ## `5.1.0` -**Note:** This version removes syncing wallpaper across virtual desktops in Windows 11 because it is too experimental of a feature to support. If you still want this functionality, install the Sync Virtual Desktops script. +**Note:** This version removes syncing wallpaper across virtual desktops in Windows 11 which used an experimental API that is too unstable to support. If you still want this functionality, install the [Sync Virtual Desktops](https://github.com/t1m0thyj/WDD-scripts/tree/master/experimental#synchronize-virtual-desktops) script. -* Added Ventura Abstract theme +* Added Ventura Abstract theme ([#451](https://github.com/t1m0thyj/WinDynamicDesktop/issues/451)) * Added dropdown in theme download dialog to select alternate mirrors that may be faster -* Added "Hide system tray icon" to menu which hides the tray icon until the next time the app is manually launched -* Fixed Mojave Desert theme name shown in bold when there is no active theme -* Fixed IndexOutOfRangeException when applying settings with no active theme +* Added "Hide system tray icon" to menu which hides tray icon until the next time the app is manually launched ([#464](https://github.com/t1m0thyj/WinDynamicDesktop/issues/464)) +* Added Estonian translation (thanks ST) +* Fixed error when applying settings and there is no active theme ([#457](https://github.com/t1m0thyj/WinDynamicDesktop/issues/457)) +* Fixed theme not updating on displays that were connected when device is sleeping +* Fixed error when theme download is cancelled +* Fixed PowerShell scripts being invoked multiple times with the same arguments +* Fixed incorrect theme name shown in bold when there is no active theme ## `5.0.3` diff --git a/src/DownloadDialog.cs b/src/DownloadDialog.cs index ecdbc09..bad84d0 100644 --- a/src/DownloadDialog.cs +++ b/src/DownloadDialog.cs @@ -105,7 +105,7 @@ private void UpdatePercentage(int percentage) private bool EnsureZipNotHtml() { // Handle case where HTML page gets downloaded instead of ZIP - return (File.Exists(themeZipDest) && ((new FileInfo(themeZipDest)).Length > 1048576)); + return (File.Exists(themeZipDest) && new FileInfo(themeZipDest).Length > 1e6); } private void OnDownloadProgressChanged(ICopyProgress e) diff --git a/src/Localization.cs b/src/Localization.cs index a1e6d0d..e1ea6d9 100644 --- a/src/Localization.cs +++ b/src/Localization.cs @@ -144,6 +144,7 @@ private static void LoadLanguages() AddLanguage("Svenska", "sv"); // Swedish AddLanguage("Tiếng Việt", "vi"); // Vietnamese AddLanguage("Türkçe", "tr"); // Turkish + AddLanguage("eesti keel", "et"); // Estonian AddLanguage("Íslenska", "is"); // Icelandic AddLanguage("Čeština", "cs"); // Czech AddLanguage("Ελληνικά", "el"); // Greek diff --git a/src/locale/ca.mo b/src/locale/ca.mo index 3a6dbc4..30b8d0f 100644 Binary files a/src/locale/ca.mo and b/src/locale/ca.mo differ diff --git a/src/locale/es.mo b/src/locale/es.mo index e9bc254..e2a9b90 100644 Binary files a/src/locale/es.mo and b/src/locale/es.mo differ diff --git a/src/locale/et.mo b/src/locale/et.mo new file mode 100644 index 0000000..411b6ce Binary files /dev/null and b/src/locale/et.mo differ diff --git a/src/locale/fi.mo b/src/locale/fi.mo index 8ab4784..7f94fcb 100644 Binary files a/src/locale/fi.mo and b/src/locale/fi.mo differ diff --git a/src/locale/fr.mo b/src/locale/fr.mo index 9df7986..d60aae0 100644 Binary files a/src/locale/fr.mo and b/src/locale/fr.mo differ diff --git a/src/locale/ja.mo b/src/locale/ja.mo index 110f66c..c0a6068 100644 Binary files a/src/locale/ja.mo and b/src/locale/ja.mo differ diff --git a/src/locale/pt.mo b/src/locale/pt.mo index e3b4a44..f059ff9 100644 Binary files a/src/locale/pt.mo and b/src/locale/pt.mo differ diff --git a/src/locale/ru.mo b/src/locale/ru.mo index cf8068b..14ecb51 100644 Binary files a/src/locale/ru.mo and b/src/locale/ru.mo differ diff --git a/src/locale/sk.mo b/src/locale/sk.mo index 05d51e1..9f50c93 100644 Binary files a/src/locale/sk.mo and b/src/locale/sk.mo differ diff --git a/src/locale/sv.mo b/src/locale/sv.mo index f781825..eaa7da0 100644 Binary files a/src/locale/sv.mo and b/src/locale/sv.mo differ diff --git a/src/locale/tr.mo b/src/locale/tr.mo index 3624cdc..f0da25c 100644 Binary files a/src/locale/tr.mo and b/src/locale/tr.mo differ diff --git a/src/locale/uk.mo b/src/locale/uk.mo index 64070a4..49355c0 100644 Binary files a/src/locale/uk.mo and b/src/locale/uk.mo differ diff --git a/src/locale/zh-Hans.mo b/src/locale/zh-Hans.mo index 6890a3b..081b5d6 100644 Binary files a/src/locale/zh-Hans.mo and b/src/locale/zh-Hans.mo differ diff --git a/src/locale/zh-Hant.mo b/src/locale/zh-Hant.mo index aa78442..9ed46bc 100644 Binary files a/src/locale/zh-Hant.mo and b/src/locale/zh-Hant.mo differ