Skip to content

Commit

Permalink
Update translations and changelog for 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
t1m0thyj committed May 31, 2021
1 parent 95ce0cb commit f8ed7f9
Show file tree
Hide file tree
Showing 31 changed files with 28 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dist
obj

.env
/uwp/*.assets.cache
/uwp/*.wapproj.user
/uwp/Package.StoreAssociation.xml
/uwp/_pkginfo.txt
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## `4.5.0`

* Added installer option to install for all users
* Added ability to favorite themes to move them to top of list
* Added Croatian, Danish, Finnish, Swedish, and Traditional Chinese translations (thanks Denis Bogdan, Anders Ferdinandus, Klokki, Christian, and Williamrob104)
* Reduced memory usage of theme previewer (thanks @cjvaughter)
* Fixed error when location has different timezone that may be a day ahead of or behind the system clock
* Fixed error when multiple users run the app simultaneously on the same machine
* Fixed hang when invalid images cause thumbnail generation to fail
* Fixed missing data that was not being supplied to PowerShell scripts
* Fixed error when downloading new translations from POEditor

## `4.4.0`

* Added 8 new themes from Big Sur 11.0.1
Expand Down
11 changes: 7 additions & 4 deletions scripts/i18n_download.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
import os
import shutil

from dotenv import load_dotenv
from poeditor import POEditorAPI
Expand All @@ -10,11 +11,13 @@
mo_dir = "../i18n/mo"
po_dir = "../i18n/po"

if not os.path.isdir(mo_dir):
os.mkdir(mo_dir)
if os.path.isdir(mo_dir):
shutil.rmtree(mo_dir)
os.mkdir(mo_dir)

if not os.path.isdir(po_dir):
os.mkdir(po_dir)
if os.path.isdir(po_dir):
shutil.rmtree(po_dir)
os.mkdir(po_dir)

client = POEditorAPI(os.getenv("POEDITOR_TOKEN"))
projects = client.list_projects()
Expand Down
7 changes: 6 additions & 1 deletion src/Localization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,26 +121,31 @@ public static void NotifyIfTestMode()
private static void LoadLanguages()
{
AddLanguage("Bahasa Indonesia", "id"); // Indonesian
AddLanguage("Dansk", "da"); // Danish
AddLanguage("Deutsch", "de"); // German
AddLanguage("English", "en"); // English
AddLanguage("Español", "es"); // Spanish
AddLanguage("Français", "fr"); // French
AddLanguage("Hrvatski", "hr"); // Croatian
AddLanguage("Italiano", "it"); // Italian
AddLanguage("Nederlands", "nl"); // Dutch
AddLanguage("Polski", "pl"); // Polish
AddLanguage("Português (do Brasil)", "pt-br"); // Portuguese (BR)
AddLanguage("Pусский", "ru"); // Russian
AddLanguage("Română", "ro"); // Romanian
AddLanguage("Svenska", "sv"); // Swedish
AddLanguage("Tiếng Việt", "vi"); // Vietnamese
AddLanguage("Türkçe", "tr"); // Turkish
AddLanguage("suomi", "fi"); // Finnish
AddLanguage("Čeština", "cs"); // Czech
AddLanguage("Ελληνικά", "el"); // Greek
AddLanguage("Български", "bg"); // Bulgarian
AddLanguage("Македонски", "mk"); // Macedonian
AddLanguage("हिन्दी", "hi"); // Hindi
AddLanguage("বাংলা", "bn"); // Bengali
AddLanguage("中文 (简体)", "zh-Hans"); // Chinese (Simplified)
AddLanguage("中文 (简体)", "zh-Hans"); // Chinese (simplified)
AddLanguage("日本語", "ja"); // Japanese
AddLanguage("正體中文 (繁體)", "zh-Hant"); // Chinese (traditional)
AddLanguage("한국어", "ko"); // Korean
}

Expand Down
2 changes: 1 addition & 1 deletion src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.4.0")]
[assembly: AssemblyVersion("4.5.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
Binary file modified src/locale/bg.mo
Binary file not shown.
Binary file modified src/locale/bn.mo
Binary file not shown.
Binary file modified src/locale/cs.mo
Binary file not shown.
Binary file added src/locale/da.mo
Binary file not shown.
Binary file modified src/locale/de.mo
Binary file not shown.
Binary file modified src/locale/es.mo
Binary file not shown.
Binary file added src/locale/fi.mo
Binary file not shown.
Binary file modified src/locale/fr.mo
Binary file not shown.
Binary file modified src/locale/hi.mo
Binary file not shown.
Binary file added src/locale/hr.mo
Binary file not shown.
Binary file modified src/locale/id.mo
Binary file not shown.
Binary file modified src/locale/it.mo
Binary file not shown.
Binary file modified src/locale/ja.mo
Binary file not shown.
Binary file modified src/locale/ko.mo
Binary file not shown.
Binary file modified src/locale/mk.mo
Binary file not shown.
Binary file modified src/locale/nl.mo
Binary file not shown.
Binary file modified src/locale/pl.mo
Binary file not shown.
Binary file modified src/locale/pt-br.mo
Binary file not shown.
Binary file modified src/locale/ro.mo
Binary file not shown.
Binary file modified src/locale/ru.mo
Binary file not shown.
Binary file added src/locale/sv.mo
Binary file not shown.
Binary file modified src/locale/tr.mo
Binary file not shown.
Binary file modified src/locale/vi.mo
Binary file not shown.
Binary file modified src/locale/zh-Hans.mo
Binary file not shown.
Binary file added src/locale/zh-Hant.mo
Binary file not shown.
2 changes: 1 addition & 1 deletion uwp/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" IgnorableNamespaces="uap uap3 mp rescap desktop">
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="4.4.0.0" />
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="4.5.0.0" />
<Properties>
<DisplayName>WinDynamicDesktop</DisplayName>
<PublisherDisplayName>Timothy Johnson</PublisherDisplayName>
Expand Down

0 comments on commit f8ed7f9

Please sign in to comment.