summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-05-11 12:59:52 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-05-11 12:59:52 -0400
commit324d02233dcb459f95befe1393d08d73766b3ece (patch)
tree07a1d3f304e62c02640872122b180b743f7cdb45
parent7b92d379793275905277cea7d0dec7de806e967b (diff)
downloadSMAPI-324d02233dcb459f95befe1393d08d73766b3ece.tar.gz
SMAPI-324d02233dcb459f95befe1393d08d73766b3ece.tar.bz2
SMAPI-324d02233dcb459f95befe1393d08d73766b3ece.zip
rename 'install.exe' to 'install on Windows.exe' to avoid confusion
-rw-r--r--build/prepare-install-package.targets2
-rw-r--r--docs/release-notes.md1
2 files changed, 2 insertions, 1 deletions
diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets
index 6c431838..433078d7 100644
--- a/build/prepare-install-package.targets
+++ b/build/prepare-install-package.targets
@@ -18,7 +18,7 @@
<RemoveDir Directories="$(PackagePath)" />
<!-- copy installer files -->
- <Copy Condition="$(OS) == 'Windows_NT'" SourceFiles="$(TargetDir)\$(TargetName).exe" DestinationFiles="$(PackagePath)\install.exe" />
+ <Copy Condition="$(OS) == 'Windows_NT'" SourceFiles="$(TargetDir)\$(TargetName).exe" DestinationFiles="$(PackagePath)\install on Windows.exe" />
<Copy SourceFiles="$(TargetDir)\readme.txt" DestinationFiles="$(PackagePath)\README.txt" />
<Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(TargetDir)\unix-launcher.sh" DestinationFiles="$(PackageInternalPath)\Mono\StardewModdingAPI" />
<Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(TargetDir)\unix-install.sh" DestinationFiles="$(PackagePath)\install.sh" />
diff --git a/docs/release-notes.md b/docs/release-notes.md
index e4ae720d..03fec40d 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -9,6 +9,7 @@
* Fixed console color scheme on Mac or in PowerShell, configurable via `StardewModdingAPI.config.json`.
* Fixed detection of GOG Galaxy install path in rare cases.
* Fixed install error on Linux/Mac in some cases.
+ * Renamed `install.exe` to `install on Windows.exe` to avoid confusion.
* For modders:
* Added code analysis to mod build config package to flag common issues as warnings.