From 1d171b6152bd5bf4fa875f5a9366d47297e8f6bd Mon Sep 17 00:00:00 2001 From: zab2 Date: Tue, 8 Jan 2019 10:29:04 +0000 Subject: [PATCH] Rename installer.exe to include version number --- Makefile | 4 ++-- changelog.txt | 11 +++++++++++ src/nsis/i2pbrowser-installer.nsi | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c3af0ff..7c2ac06 100644 --- a/Makefile +++ b/Makefile @@ -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: diff --git a/changelog.txt b/changelog.txt index cf8b9c2..98a3ad8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/src/nsis/i2pbrowser-installer.nsi b/src/nsis/i2pbrowser-installer.nsi index b88872b..6efd158 100644 --- a/src/nsis/i2pbrowser-installer.nsi +++ b/src/nsis/i2pbrowser-installer.nsi @@ -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