Skip to content

Commit 97e2725

Browse files
committed
Update translations and changelog for 5.2.1
1 parent dbfe823 commit 97e2725

10 files changed

+12
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## `5.2.1`
4+
5+
* Fixed `NullReferenceException` when settings.json file is invalid
6+
* Fixed PowerShell scripts not being invoked with the latest version of PowerShell (v7) ([#439](https://github.com/t1m0thyj/WinDynamicDesktop/issues/439))
7+
* Fixed a few strings that were not translatable in Select Theme dialog ([#507](https://github.com/t1m0thyj/WinDynamicDesktop/issues/507))
8+
* Fixed font rendering issues on Windows 11 with light theme ([#508](https://github.com/t1m0thyj/WinDynamicDesktop/issues/508))
9+
* Added Galician and Luxembourgish translations (thanks Juan Paz and Arno)
10+
311
## `5.2.0`
412

513
* Added dark UI theme using Mica (only for Windows 11 22H2)

src/Localization.cs

+2
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,10 @@ private static void LoadLanguages()
140140
AddLanguage("English", "en"); // English
141141
AddLanguage("Español", "es"); // Spanish
142142
AddLanguage("Français", "fr"); // French
143+
AddLanguage("Galego", "gl"); // Galician
143144
AddLanguage("Hrvatski", "hr"); // Croatian
144145
AddLanguage("Italiano", "it"); // Italian
146+
AddLanguage("Lëtzebuergesch", "lb"); // Luxembourgish
145147
AddLanguage("Magyar", "hu"); // Hungarian
146148
AddLanguage("Nederlands", "nl"); // Dutch
147149
AddLanguage("Polski", "pl"); // Polish

src/WinDynamicDesktop.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>WinDynamicDesktop</PackageId>
1010
<Product>WinDynamicDesktop</Product>
1111
<Copyright>Copyright © 2023 Timothy Johnson</Copyright>
12-
<Version>5.2.0</Version>
12+
<Version>5.2.1</Version>
1313
<ApplicationIcon>resources\WinDynamicDesktop.ico</ApplicationIcon>
1414
<UseWindowsForms>true</UseWindowsForms>
1515
<UseWPF>true</UseWPF>

src/locale/es.mo

182 Bytes
Binary file not shown.

src/locale/gl.mo

11.5 KB
Binary file not shown.

src/locale/it.mo

625 Bytes
Binary file not shown.

src/locale/lb.mo

11.4 KB
Binary file not shown.

src/locale/ru.mo

60 Bytes
Binary file not shown.

src/locale/zh-Hans.mo

173 Bytes
Binary file not shown.

uwp/Package.appxmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
3-
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="5.2.0.0" />
3+
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="5.2.1.0" />
44
<Properties>
55
<DisplayName>WinDynamicDesktop</DisplayName>
66
<PublisherDisplayName>Timothy Johnson</PublisherDisplayName>

0 commit comments

Comments
 (0)