Skip to content

Commit 4cba3ee

Browse files
committed
Update changelog and translations for version 5.4.2
1 parent 080bf29 commit 4cba3ee

File tree

7 files changed

+14
-4
lines changed

7 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## `5.4.2`
4+
5+
**Note:** Version 5.4.0 had a bug causing the Change Lockscreen Image setting to be disabled in some cases when it had been enabled before. If you had this option selected, check lock screen settings in the Select Theme dialog to make sure it is still enabled after upgrading.
6+
7+
* Fixed error when shuffle theme option is enabled and Windows 11 theme gets picked ([#535](https://github.com/t1m0thyj/WinDynamicDesktop/issues/535))
8+
* Fixed error when setting lock screen image and no other displays have wallpaper set ([#536](https://github.com/t1m0thyj/WinDynamicDesktop/issues/536))
9+
* Fixed crash when disconnecting user account if app is running in background ([#569](https://github.com/t1m0thyj/WinDynamicDesktop/issues/569))
10+
* Fixed hang when uninstalling app from Microsoft Store ([#570](https://github.com/t1m0thyj/WinDynamicDesktop/issues/570))
11+
* Fixed ellipsis (3 dots) button in Select Theme dialog not rendering on high-DPI displays
12+
313
## `5.4.1`
414

515
* Fixed crash when opening Select Theme dialog due to resource missing from Release build ([#562](https://github.com/t1m0thyj/WinDynamicDesktop/issues/562))

scripts/i18n_gettext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ def add_to_pot_data(msgid, filename, lineno):
4747
add_to_pot_data(match.group(1), filename[3:], i + 1)
4848

4949
if not msg_history:
50-
match = re.search(r'(?:_|Localization\.GetTranslation)\("(.+)"\s', line)
50+
match = re.search(r'(?:_|Localization\.GetTranslation)\((?:"(.+)")?\s', line)
5151

5252
if match:
53-
msg_history = [match.group(1), i + 1]
53+
msg_history = [match.group(1) or "", i + 1]
5454
elif os.path.dirname(filename).endswith("src"):
5555
for i, line in enumerate(cs_file):
5656
match = re.search(r'\W"(.+)"\W', line)

src/WinDynamicDesktop.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>WinDynamicDesktop</PackageId>
1010
<Product>WinDynamicDesktop</Product>
1111
<Copyright>Copyright © 2024 Timothy Johnson</Copyright>
12-
<Version>5.4.1</Version>
12+
<Version>5.4.2</Version>
1313
<ApplicationIcon>resources\WinDynamicDesktop.ico</ApplicationIcon>
1414
<UseWindowsForms>true</UseWindowsForms>
1515
<UseWPF>true</UseWPF>

src/locale/ca.mo

-58 Bytes
Binary file not shown.

src/locale/fr.mo

1.4 KB
Binary file not shown.

src/locale/it.mo

1.27 KB
Binary file not shown.

uwp/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
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.4.1.0" />
3+
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="5.4.2.0" />
44
<Properties>
55
<DisplayName>WinDynamicDesktop</DisplayName>
66
<PublisherDisplayName>Timothy Johnson</PublisherDisplayName>

0 commit comments

Comments
 (0)