Skip to content

Commit

Permalink
Update changelog and translations for version 5.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
t1m0thyj committed Feb 26, 2024
1 parent 080bf29 commit 4cba3ee
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## `5.4.2`

**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.

* Fixed error when shuffle theme option is enabled and Windows 11 theme gets picked ([#535](https://github.com/t1m0thyj/WinDynamicDesktop/issues/535))
* Fixed error when setting lock screen image and no other displays have wallpaper set ([#536](https://github.com/t1m0thyj/WinDynamicDesktop/issues/536))
* Fixed crash when disconnecting user account if app is running in background ([#569](https://github.com/t1m0thyj/WinDynamicDesktop/issues/569))
* Fixed hang when uninstalling app from Microsoft Store ([#570](https://github.com/t1m0thyj/WinDynamicDesktop/issues/570))
* Fixed ellipsis (3 dots) button in Select Theme dialog not rendering on high-DPI displays

## `5.4.1`

* Fixed crash when opening Select Theme dialog due to resource missing from Release build ([#562](https://github.com/t1m0thyj/WinDynamicDesktop/issues/562))
Expand Down
4 changes: 2 additions & 2 deletions scripts/i18n_gettext.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ def add_to_pot_data(msgid, filename, lineno):
add_to_pot_data(match.group(1), filename[3:], i + 1)

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

if match:
msg_history = [match.group(1), i + 1]
msg_history = [match.group(1) or "", i + 1]
elif os.path.dirname(filename).endswith("src"):
for i, line in enumerate(cs_file):
match = re.search(r'\W"(.+)"\W', line)
Expand Down
2 changes: 1 addition & 1 deletion src/WinDynamicDesktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageId>WinDynamicDesktop</PackageId>
<Product>WinDynamicDesktop</Product>
<Copyright>Copyright © 2024 Timothy Johnson</Copyright>
<Version>5.4.1</Version>
<Version>5.4.2</Version>
<ApplicationIcon>resources\WinDynamicDesktop.ico</ApplicationIcon>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
Expand Down
Binary file modified src/locale/ca.mo
Binary file not shown.
Binary file modified src/locale/fr.mo
Binary file not shown.
Binary file modified src/locale/it.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="5.4.1.0" />
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="5.4.2.0" />
<Properties>
<DisplayName>WinDynamicDesktop</DisplayName>
<PublisherDisplayName>Timothy Johnson</PublisherDisplayName>
Expand Down

0 comments on commit 4cba3ee

Please sign in to comment.