Rename installer.exe to include version number

This commit is contained in:
zab2
2019-01-08 10:29:04 +00:00
parent 49d85da0ac
commit 1d171b6152
3 changed files with 14 additions and 3 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ install.exe: profile build/licenses
cp src/nsis/*.nsi build
cp src/nsis/*.nsh build
cp src/icons/*.ico build
cd build && makensis i2pbrowser-installer.nsi && cp install.exe ../ && echo "built windows installer"
cd build && makensis i2pbrowser-installer.nsi && cp I2P-Profile-Installer-*.exe ../ && echo "built windows installer"
#
# Warning: a displayed license file of more than 28752 bytes
@@ -18,7 +18,7 @@ build/licenses: build
unix2dos build/licenses/LICENSE.index
clean:
rm -rf build profile-*.tgz install.exe
rm -rf build profile-*.tgz I2P-Profile-Installer-*.exe
build:
+11
View File
@@ -1,3 +1,14 @@
2019-01-08 zab
* Rename the output of the windows installer to include version.
- current (initial) version is 0.01a
2019-01-07 zzz
* Remove irrelevant parts of Tor license
* Fix Makefile to not re-download the xpi's
2019-01-07 zab
* Split the license into files to reduce size and fix build on nsis v3 (ticket 2372)
2019-01-05 zab
* start a changelog
* add version to the profile, independent of installer version
+1 -1
View File
@@ -29,7 +29,7 @@ LicenseData "licenses\LICENSE.index"
# This will be in the installer/uninstaller's title bar
Name "${COMPANYNAME} - ${APPNAME}"
Icon "ui2pbrowser_icon.ico"
OutFile "install.exe"
OutFile "I2P-Profile-Installer-${VERSIONMAJOR}.${VERSIONMINOR}${VERSIONBUILD}.exe"
RequestExecutionLevel admin