diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-07-05 20:01:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-07-05 20:01:32 +0200 |
commit | 266411aa8a95c63e6a3bd81736ce6519a241cc60 (patch) | |
tree | 223bbe71f1b24df0ae57020bc1662c782448625e /nsis | |
parent | ccf623f6f8e89b687402179f292d3999de87bd3d (diff) | |
download | vim-git-266411aa8a95c63e6a3bd81736ce6519a241cc60.tar.gz |
updated for version 7.3.1310v7.3.1310
Problem: Typos in nsis script. Can use better compression.
Solution: Fix typos. Use lzma compression. (Ken Takata)
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index ccdef090e..7c407219f 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -40,7 +40,7 @@ RequestExecutionLevel highest ComponentText "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer." DirText "Choose a directory to install Vim (must end in 'vim')" Icon icons\vim_16c.ico -# NSIS2 uses a different strategy with six diferent images in a strip... +# NSIS2 uses a different strategy with six different images in a strip... #EnabledBitmap icons\enabled.bmp #DisabledBitmap icons\disabled.bmp UninstallText "This will uninstall Vim ${VER_MAJOR}.${VER_MINOR} from your system." @@ -56,6 +56,9 @@ LicenseData ${VIMRT}\doc\uganda.nsis.txt !packhdr temp.dat "upx --best --compress-icons=1 temp.dat" !endif +SetCompressor /SOLID lzma +XPStyle on + # This adds '\vim' to the user choice automagically. The actual value is # obtained below with ReadINIStr. InstallDir "$PROGRAMFILES\Vim" @@ -250,7 +253,7 @@ Section "Vim console program (vim.exe)" # Windows 95/98/ME: not supported Goto lbl_done lbl_winnt: - # Windows NT/2000/XT and later + # Windows NT/2000/XP and later File /oname=vim.exe ${VIMSRC}\vimw32.exe lbl_done: StrCpy $2 "$2 vim view vimdiff" |