summaryrefslogtreecommitdiff
path: root/nsis
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime filesBram Moolenaar2019-06-101-28/+28
|
* patch 8.1.1404: cannot change the patch level when building with NSISv8.1.1404Bram Moolenaar2019-05-261-2/+7
| | | | | Problem: Cannot change the patch level when building with NSIS. Solution: Use $PATCHLEVEL if defined. (Christian Brabandt)
* patch 8.1.1339: installer needs to product name et al.v8.1.1339Bram Moolenaar2019-05-171-0/+10
| | | | | Problem: Installer needs to product name et al. Solution: Add a few lines to the NSIS installer script. (Christian Brabandt)
* patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exev8.1.1230Bram Moolenaar2019-04-281-0/+3
| | | | | | Problem: A lot of code is shared between vim.exe and gvim.exe. Solution: Optionally put the shared code in vim.dll. (Ken Takata, closes #4287)
* patch 8.1.1159: MS-Windows: with a silent (un)install $VIM/_vimrc is removedv8.1.1159Bram Moolenaar2019-04-121-1/+3
| | | | | Problem: MS-Windows: with a silent (un)install $VIM/_vimrc is removed. Solution: Don't delete _vimrc in silent mode. (Ken Takata, closes #4242)
* patch 8.1.1057: nsis config is too complicatedv8.1.1057Bram Moolenaar2019-03-261-36/+4
| | | | | | Problem: Nsis config is too complicated. Solution: Use "File /r" for the macros and pack directories. (Ken Takata, closes #4169)
* patch 8.1.0955: matchit autoload directory not in installerv8.1.0955Bram Moolenaar2019-02-191-0/+2
| | | | | Problem: Matchit autoload directory not in installer. (Chris Morgan) Solution: Adjust the NSIS script. (Christian Brabandt, closes #4006)
* Update runtime files.Bram Moolenaar2019-02-171-5/+5
|
* Update runtime files.Bram Moolenaar2019-01-178-67/+60
|
* patch 8.1.0713: images for NSIS take up too much spacev8.1.0713Bram Moolenaar2019-01-1012-533/+5
| | | | | Problem: Images for NSIS take up too much space. Solution: Put the images in a zip file.
* patch 8.1.0637: nsis file no longer usedv8.1.0637Bram Moolenaar2018-12-251-68/+0
| | | | | Problem: Nsis file no longer used. Solution: Remove the file. (Ken Takata)
* patch 8.1.0617: NSIS installer gets two files from the wrong directoryv8.1.0617Bram Moolenaar2018-12-211-2/+2
| | | | | Problem: NSIS installer gets two files from the wrong directory. Solution: Change ${VIMRT} to "..\".
* patch 8.1.0616: NSIS installer is outdatedv8.1.0616Bram Moolenaar2018-12-2115-303/+3514
| | | | | | Problem: NSIS installer is outdated. Solution: Use modern syntax, MUI2 and make it work better. Add translations. (Ken Takata, closes #3501)
* patch 8.1.0558: some MS-Windows instructions are outdatedv8.1.0558Bram Moolenaar2018-12-021-6/+8
| | | | | | Problem: Some MS-Windows instructions are outdated. Solution: Update the uninstall instructions and the NSIS README. (Ken Takata, closes #3614) Also update remark about diff.exe.
* Update runtime files, add Danish translations.Bram Moolenaar2018-07-072-0/+0
|
* Vim 8.1 releasev8.1.0000Bram Moolenaar2018-05-171-1/+1
| | | | Update version number and information. Fix a couple of tests.
* patch 8.0.1813: Windows installer doesn't install terminal debuggerv8.0.1813Bram Moolenaar2018-05-101-0/+3
| | | | | Problem: Windows installer doesn't install terminal debugger. Solution: Add the package to the list of files to install.
* patch 8.0.1472: MS-Windows: nsis installer is a bit slowv8.0.1472Bram Moolenaar2018-02-041-6/+9
| | | | | Problem: MS-Windows: nsis installer is a bit slow. Solution: Use ReserveFile for vimrc.ini. (closes #2522)
* patch 8.0.1285: occasional crash when using a channelv8.0.1285Bram Moolenaar2017-11-111-0/+3
| | | | | Problem: Occasional crash when using a channel. (Marek) Solution: Decrement reference count later. (closes #2315)
* patch 8.0.1232: MS-Windows users are confused about default mappingsv8.0.1232Bram Moolenaar2017-10-282-1/+113
| | | | | | | Problem: MS-Windows users are confused about default mappings. Solution: Don't map keys in the console where they don't work. Add a choice in the installer to use MS-Windows key bindings or not. (Christian Brabandt, Ken Takata, closes #2093)
* patch 8.0.1197: MS-Windows build instructions are not up to datev8.0.1197Bram Moolenaar2017-10-151-1/+1
| | | | | Problem: MS-Windows build instructions are not up to date. Solution: Adjust the instructions. Fix the nsis script.
* patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installerv8.0.1191Bram Moolenaar2017-10-142-19/+102
| | | | | | Problem: MS-Windows: missing 32 and 64 bit files in installer. Solution: Include both 32 and 64 bit GvimExt and related dll files. Remove old Windows code from the installer. (Ken Takata, closes #2144)
* patch 8.0.1121: can uncheck executables in MS-Windows installerv8.0.1121Bram Moolenaar2017-09-171-1/+1
| | | | | Problem: Can uncheck executables in MS-Windows installer. Solution: Make the choice read-only. (Ken Takata, closes #2106)
* patch 8.0.1065: not all macro examples are includedv8.0.1065Bram Moolenaar2017-09-061-0/+8
| | | | | | Problem: Not all macro examples are included in the self-installing executable. (lkintact) Solution: Add the directories to the NSIS script. (closes #2065)
* patch 8.0.0961: the script to build the installer does not include winptyv8.0.0961Bram Moolenaar2017-08-191-1/+4
| | | | | Problem: The script to build the installer does not include winpty. Solution: Add winpty32.dll and winpty-agent.exe like diff.exe
* patch 8.0.0668: nsis installer script does not workv8.0.0668Bram Moolenaar2017-06-241-1/+2
| | | | | Problem: Nsis installer script does not work. (Christian Brabandt) Solution: Fix the syntax of /SD.
* patch 8.0.0660: silent install on MS-Windows shows dialogv8.0.0660Bram Moolenaar2017-06-221-1/+1
| | | | | Problem: Silent install on MS-Windows does show a dialog. Solution: Add /SD to the default choice. (allburov, closes #1772)
* patch 8.0.0410: newer gettext/iconv library has extra dll filev8.0.0410Bram Moolenaar2017-03-041-0/+1
| | | | | Problem: Newer gettext/iconv library has extra dll file. Solution: Add the file to the Makefile and nsis script. (Christian Brabandt)
* Vim 8.0 releasev8.0.0000Bram Moolenaar2016-09-121-2/+2
|
* patch 7.4.2286v7.4.2286Bram Moolenaar2016-08-281-0/+1
| | | | | | | Problem: The tee program isn't included. Makefile contains build instructions that don't work. Solution: Update the Filelist and build instructions. Remove build instructions for DOS and old Windows. Add the tee program.
* patch 7.4.1788v7.4.1788Bram Moolenaar2016-04-261-0/+22
| | | | | Problem: NSIS script is missing packages. Solution: Add the missing directories. (Ken Takata)
* patch 7.4.1106v7.4.1106Bram Moolenaar2016-01-161-8/+14
| | | | | | | | Problem: The nsis script can't be used from the appveyor build. Solution: Add "ifndef" to allow for variables to be set from the command line. Remove duplicate SetCompressor command. Support using other gettext binaries. (Ken Takata) Update build instructions to use libintl-8.dll.
* patch 7.4.1025v7.4.1025Bram Moolenaar2016-01-022-2/+7
| | | | | Problem: Version in installer needs to be updated manually. Solution: Generate a file with the version number. (Guopeng Wen)
* updated for version 7.4.504v7.4.504Bram Moolenaar2014-11-051-7/+2
| | | | | | Problem: Restriction of the MS-Windows installer that the path must end in "Vim" prevents installing more than one version. Solution: Remove the restriction. (Tim Lebedkov)
* release version 7.4v7.4Bram Moolenaar2013-08-101-1/+1
|
* Update files for the 7.4b BETA release.v7.4b.000Bram Moolenaar2013-07-281-1/+1
|
* Vim 7.4a BETA release.v7.4aBram Moolenaar2013-07-061-1/+1
|
* updated for version 7.3.1310v7.3.1310Bram Moolenaar2013-07-051-2/+5
| | | | | Problem: Typos in nsis script. Can use better compression. Solution: Fix typos. Use lzma compression. (Ken Takata)
* updated for version 7.3.1307v7.3.1307Bram Moolenaar2013-07-041-4/+3
| | | | | Problem: MS-Windows build instructions are outdated. Solution: Adjust for building on Windows 7. Drop Windows 95/98/ME support.
* Last changes for the 7.3 release!v7.3Bram Moolenaar2010-08-151-1/+1
|
* Version 7.3f -> 7.3gBram Moolenaar2010-08-141-1/+1
|
* Version 7.3e -> 7.3f.Bram Moolenaar2010-08-091-1/+1
|
* 7.3d -> 7.3e.Bram Moolenaar2010-08-041-1/+1
|
* Update version.h for 7.3c -> 7.3d.Bram Moolenaar2010-08-011-1/+1
|
* Version 7.3c -> 7.3dBram Moolenaar2010-08-011-1/+1
|
* Fix that uninstaller isn't found on 64-bit Windows.Bram Moolenaar2010-07-311-1/+1
|
* Runtime file updates.Bram Moolenaar2010-07-301-1/+1
|
* 7.3b -> 7.3cBram Moolenaar2010-07-251-1/+1
|
* Vim 7.3a -> 7.3b.Bram Moolenaar2010-07-181-1/+1
|
* Improve the MS-Windows installer.Bram Moolenaar2010-05-241-2/+13
|