comparison nsis/gvim.nsi @ 18174:1ec6539cef68 v8.1.2082

patch 8.1.2082: some files have a weird name to fit in 8.3 characters Commit: https://github.com/vim/vim/commit/30e8e73506e4522ef4aebf7d525c0e6ffe8805fd Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 27 13:08:36 2019 +0200 patch 8.1.2082: some files have a weird name to fit in 8.3 characters Problem: Some files have a weird name to fit in 8.3 characters. Solution: Use a nicer names.
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Sep 2019 13:15:03 +0200
parents 9fa322a3bc31
children edf498427f99
comparison
equal deleted inserted replaced
18173:f046fb05b08f 18174:1ec6539cef68
339 File /oname=gvim.exe ${VIMSRC}\gvim_ole.exe 339 File /oname=gvim.exe ${VIMSRC}\gvim_ole.exe
340 !if /FileExists "${VIMSRC}\vim${BIT}.dll" 340 !if /FileExists "${VIMSRC}\vim${BIT}.dll"
341 File ${VIMSRC}\vim${BIT}.dll 341 File ${VIMSRC}\vim${BIT}.dll
342 !endif 342 !endif
343 File /oname=install.exe ${VIMSRC}\installw32.exe 343 File /oname=install.exe ${VIMSRC}\installw32.exe
344 File /oname=uninstal.exe ${VIMSRC}\uninstalw32.exe 344 File /oname=uninstall.exe ${VIMSRC}\uninstallw32.exe
345 File ${VIMSRC}\vimrun.exe 345 File ${VIMSRC}\vimrun.exe
346 File /oname=tee.exe ${VIMSRC}\teew32.exe 346 File /oname=tee.exe ${VIMSRC}\teew32.exe
347 File /oname=xxd.exe ${VIMSRC}\xxdw32.exe 347 File /oname=xxd.exe ${VIMSRC}\xxdw32.exe
348 File ..\vimtutor.bat 348 File ..\vimtutor.bat
349 File ..\README.txt 349 File ..\README.txt
350 File ..\uninstal.txt 350 File ..\uninstall.txt
351 File ${VIMRT}\*.vim 351 File ${VIMRT}\*.vim
352 File ${VIMRT}\rgb.txt 352 File ${VIMRT}\rgb.txt
353 353
354 File ${VIMTOOLS}\diff.exe 354 File ${VIMTOOLS}\diff.exe
355 File ${VIMTOOLS}\winpty${BIT}.dll 355 File ${VIMTOOLS}\winpty${BIT}.dll
953 ${EndIf} 953 ${EndIf}
954 !endif 954 !endif
955 955
956 # delete the context menu entry and batch files 956 # delete the context menu entry and batch files
957 DetailPrint "$(str_msg_unregistering)" 957 DetailPrint "$(str_msg_unregistering)"
958 nsExec::Exec "$0\uninstal.exe -nsis" 958 nsExec::Exec "$0\uninstall.exe -nsis"
959 Pop $3 959 Pop $3
960 960
961 # We may have been put to the background when uninstall did something. 961 # We may have been put to the background when uninstall did something.
962 BringToFront 962 BringToFront
963 963