diff options
-rw-r--r-- | build/smapi.targets | 1 | ||||
-rw-r--r-- | package.nuspec | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/build/smapi.targets b/build/smapi.targets index 7d87868a..81dba014 100644 --- a/build/smapi.targets +++ b/build/smapi.targets @@ -33,7 +33,6 @@ <GamePath Condition="!Exists('$(GamePath)' )">C:\Program Files (x86)\GalaxyClient\Games\Stardew Valley</GamePath> <GamePath Condition="!Exists('$(GamePath)' )">C:\Program Files (x86)\Steam\steamapps\common\Stardew Valley</GamePath> <GamePath Condition="!Exists('$(GamePath)') AND '$(GamePlatform)' == 'Windows'">$([MSBuild]::GetRegistryValueFromView('HKEY_LOCAL_MACHINE\SOFTWARE\GOG.com\Games\1453375253', 'PATH', null, RegistryView.Registry32))</GamePath> - <GamePath Condition="!Exists('$(GamePath)') AND '$(GamePlatform)' == 'Windows'">$([MSBuild]::GetRegistryValueFromView('HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\GOG.com\Games\1453375253', 'PATH', null, RegistryView.Registry64)</GamePath> <GamePath Condition="!Exists('$(GamePath)') AND '$(GamePlatform)' == 'Windows'">$([MSBuild]::GetRegistryValueFromView('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Steam App 413150', 'InstallLocation', null, RegistryView.Registry64, RegistryView.Registry32))</GamePath> </PropertyGroup> diff --git a/package.nuspec b/package.nuspec index bc26a37c..fb009841 100644 --- a/package.nuspec +++ b/package.nuspec @@ -2,7 +2,7 @@ <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> <metadata> <id>Pathoschild.Stardew.ModBuildConfig</id> - <version>1.3</version> + <version>1.4</version> <title>MSBuild config for Stardew Valley mods</title> <authors>Pathoschild</authors> <owners>Pathoschild</owners> @@ -11,7 +11,7 @@ <projectUrl>https://github.com/Pathoschild/Stardew.ModBuildConfig</projectUrl> <iconUrl>https://raw.githubusercontent.com/Pathoschild/Stardew.ModBuildConfig/1.3/assets/nuget-icon.png</iconUrl> <description>Automates the build configuration for a crossplatform Stardew Valley mod that uses SMAPI.</description> - <releaseNotes>Detect custom game install paths on Windows by checking the registry.</releaseNotes> + <releaseNotes>Fix game path detection on 32-bit Windows.</releaseNotes> </metadata> <files> <file src="build/smapi.targets" target="build/Pathoschild.Stardew.ModBuildConfig.targets" /> |