Skip to content

Commit 89f4700

Browse files
committed
Update changelog for version 5.4.0
1 parent 89b42d6 commit 89f4700

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CHANGELOG.md

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

3+
## `5.4.0`
4+
5+
### Enhancements
6+
7+
* Added shuffle option to include only favorite themes ([#359](https://github.com/t1m0thyj/WinDynamicDesktop/issues/359))
8+
* Added shuffle option to change frequency to hourly, daily, weekly, or monthly ([#397](https://github.com/t1m0thyj/WinDynamicDesktop/issues/397))
9+
* Added lock screen as another display in Select Theme dialog which can have a separate theme applied ([#500](https://github.com/t1m0thyj/WinDynamicDesktop/issues/500))
10+
* Added Windows 11 wallpaper to list of built-in dynamic wallpapers (only for Windows 11) ([#526](https://github.com/t1m0thyj/WinDynamicDesktop/issues/526))
11+
* Made wallpaper timing more accurate for polar day and polar night by showing brightest image at solar noon ([#545](https://github.com/t1m0thyj/WinDynamicDesktop/issues/545))
12+
* Added Slovak, Tamil, and Uyghur translations (thanks Ignus, Arjun, and Widio)
13+
* Updated from .NET 6 to .NET 8 (this should not affect most users)
14+
15+
### Bug Fixes
16+
17+
* Fixed error in Store app when applying theme if name contains special characters ([#434](https://github.com/t1m0thyj/WinDynamicDesktop/issues/434))
18+
* Fixed crash when Microsoft Store force closes app to update to newer version ([#512](https://github.com/t1m0thyj/WinDynamicDesktop/issues/512))
19+
* Fixed misplaced strings in Configure Schedule dialog when localized ([#513](https://github.com/t1m0thyj/WinDynamicDesktop/issues/513))
20+
* Fixed error that could happen previewing theme with only day and night segments ([#529](https://github.com/t1m0thyj/WinDynamicDesktop/issues/529))
21+
322
## `5.3.1`
423

524
* Updated dark theme to stop using buggy Mica effect which may prevent mouse clicks ([#525](https://github.com/t1m0thyj/WinDynamicDesktop/issues/525))

src/ThemeDialog.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,8 @@ private void deleteThemeMenuItem_Click(object sender, EventArgs e)
556556
string themeId = (string)listView1.Items[itemIndex].Tag;
557557
ThemeConfig theme = ThemeManager.themeSettings.Find(t => t.themeId == themeId);
558558

559-
if ((JsonConfig.settings.activeThemes != null && JsonConfig.settings.activeThemes.Contains(themeId))
559+
if ((JsonConfig.settings.activeThemes != null && (JsonConfig.settings.activeThemes[0] == themeId ||
560+
(JsonConfig.settings.activeThemes[0] == null && JsonConfig.settings.activeThemes.Contains(themeId))))
560561
|| JsonConfig.settings.lockScreenTheme == themeId)
561562
{
562563
MessageDialog.ShowWarning(string.Format(_("The '{0}' theme cannot be deleted because it is " +

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.3.1</Version>
12+
<Version>5.4.0</Version>
1313
<ApplicationIcon>resources\WinDynamicDesktop.ico</ApplicationIcon>
1414
<UseWindowsForms>true</UseWindowsForms>
1515
<UseWPF>true</UseWPF>

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=t1m0thyj" Version="5.3.1.0" />
3+
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=t1m0thyj" Version="5.4.0.0" />
44
<Properties>
55
<DisplayName>WinDynamicDesktop</DisplayName>
66
<PublisherDisplayName>Timothy Johnson</PublisherDisplayName>

0 commit comments

Comments
 (0)