Skip to content

Commit

Permalink
Update translations and changelog for 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
t1m0thyj committed Apr 3, 2022
1 parent 0836e34 commit e2c2729
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## `5.0.1`

* Fixed error when wallpaper changes and Change Lockscreen Image is enabled
* Fixed error when wallpaper changes and PowerShell scripts are enabled
* Disabled virtual desktop support for Windows 11 Insider builds ([#421](https://github.com/t1m0thyj/WinDynamicDesktop/issues/421))

## `5.0.0`

* Added support for setting separate background on multiple monitors
Expand Down
6 changes: 4 additions & 2 deletions scripts/version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ param (

$appxmanifest = "uwp\Package.appxmanifest"
$csproj = "src\WinDynamicDesktop.csproj"

$xmlDoc = [XML](Get-Content -Path $csproj)
$oldVersion = $xmlDoc.Project.PropertyGroup.Version

if (!$newVersion) {
$newVersion = "$oldVersion-$(git rev-parse --short HEAD)"
$xmlDoc.Project.PropertyGroup.Version = $newVersion
$xmlDoc.Save($csproj)
}

$xmlDoc.Project.PropertyGroup.Version = $newVersion
$xmlDoc.Save($csproj)

$xmlDoc = [XML](Get-Content -Path $appxmanifest)
$newVersion4 = $newVersion -Replace '^(\d+\.\d+\.\d+).*', '$1.0'
$xmlDoc.Package.Identity.setAttribute("Version", $newVersion4)
Expand Down
Binary file modified src/locale/fr.mo
Binary file not shown.
Binary file modified src/locale/ko.mo
Binary file not shown.
Binary file modified src/locale/ro.mo
Binary file not shown.
Binary file modified src/locale/zh-Hans.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.0.0.0" />
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="5.0.1.0" />
<Properties>
<DisplayName>WinDynamicDesktop</DisplayName>
<PublisherDisplayName>Timothy Johnson</PublisherDisplayName>
Expand Down

0 comments on commit e2c2729

Please sign in to comment.