Skip to content

Commit 040483b

Browse files
committed
updated for version 7.3.1310
Problem: Typos in nsis script. Can use better compression. Solution: Fix typos. Use lzma compression. (Ken Takata)
1 parent 9832557 commit 040483b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

nsis/gvim.nsi

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RequestExecutionLevel highest
4040
ComponentText "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer."
4141
DirText "Choose a directory to install Vim (must end in 'vim')"
4242
Icon icons\vim_16c.ico
43-
# NSIS2 uses a different strategy with six diferent images in a strip...
43+
# NSIS2 uses a different strategy with six different images in a strip...
4444
#EnabledBitmap icons\enabled.bmp
4545
#DisabledBitmap icons\disabled.bmp
4646
UninstallText "This will uninstall Vim ${VER_MAJOR}.${VER_MINOR} from your system."
@@ -56,6 +56,9 @@ LicenseData ${VIMRT}\doc\uganda.nsis.txt
5656
!packhdr temp.dat "upx --best --compress-icons=1 temp.dat"
5757
!endif
5858

59+
SetCompressor /SOLID lzma
60+
XPStyle on
61+
5962
# This adds '\vim' to the user choice automagically. The actual value is
6063
# obtained below with ReadINIStr.
6164
InstallDir "$PROGRAMFILES\Vim"
@@ -250,7 +253,7 @@ Section "Vim console program (vim.exe)"
250253
# Windows 95/98/ME: not supported
251254
Goto lbl_done
252255
lbl_winnt:
253-
# Windows NT/2000/XT and later
256+
# Windows NT/2000/XP and later
254257
File /oname=vim.exe ${VIMSRC}\vimw32.exe
255258
lbl_done:
256259
StrCpy $2 "$2 vim view vimdiff"

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ static char *(features[]) =
728728

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
1310,
731733
/**/
732734
1309,
733735
/**/

0 commit comments

Comments
 (0)