# HG changeset patch # User Bram Moolenaar # Date 1545411606 -3600 # Node ID d99d068b996b8615724edf17de463f4bd380e056 # Parent 877df5a96e97835393772f46cad6de8ec9b6b8f9 patch 8.1.0617: NSIS installer gets two files from the wrong directory commit https://github.com/vim/vim/commit/1916673a1696eab66516c3f96bec1f2e4b92f761 Author: Bram Moolenaar Date: Fri Dec 21 17:59:33 2018 +0100 patch 8.1.0617: NSIS installer gets two files from the wrong directory Problem: NSIS installer gets two files from the wrong directory. Solution: Change ${VIMRT} to "..\". diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -327,8 +327,8 @@ Section "$(str_section_exe)" id_section_ File ${VIMSRC}\vimrun.exe File /oname=tee.exe ${VIMSRC}\teew32.exe File /oname=xxd.exe ${VIMSRC}\xxdw32.exe - File ${VIMRT}\vimtutor.bat - File ${VIMRT}\README.txt + File ..\vimtutor.bat + File ..\README.txt File ..\uninstal.txt File ${VIMRT}\*.vim File ${VIMRT}\rgb.txt diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -800,6 +800,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 617, +/**/ 616, /**/ 615,