Skip to content

Commit

Permalink
Update translations and changelog for 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
t1m0thyj committed Aug 29, 2022
1 parent e44d0e5 commit 02b66c3
Show file tree
Hide file tree
Showing 17 changed files with 11 additions and 6 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion src/DownloadDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions src/Localization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file modified src/locale/ca.mo
Binary file not shown.
Binary file modified src/locale/es.mo
Binary file not shown.
Binary file added src/locale/et.mo
Binary file not shown.
Binary file modified src/locale/fi.mo
Binary file not shown.
Binary file modified src/locale/fr.mo
Binary file not shown.
Binary file modified src/locale/ja.mo
Binary file not shown.
Binary file modified src/locale/pt.mo
Binary file not shown.
Binary file modified src/locale/ru.mo
Binary file not shown.
Binary file modified src/locale/sk.mo
Binary file not shown.
Binary file modified src/locale/sv.mo
Binary file not shown.
Binary file modified src/locale/tr.mo
Binary file not shown.
Binary file modified src/locale/uk.mo
Binary file not shown.
Binary file modified src/locale/zh-Hans.mo
Binary file not shown.
Binary file modified src/locale/zh-Hant.mo
Binary file not shown.

0 comments on commit 02b66c3

Please sign in to comment.