Hi,
I found some typos in gvim.nsi.
Additionally, I suggest that we add some settings:
SetCompressor /SOLID lzma
(see: http://nsis.sourceforge.net/Docs/Chapter4.html#4.8.2.4)
XPStyle on
(see: http://nsis.sourceforge.net/Docs/Chapter4.html#4.8.1.46)
Thanks,
Ken Takata
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
# HG changeset patch
# Parent ad2128196d42f41f140bc14bfdedcb32f55c3172
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -40,7 +40,7 @@
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."
@@ -250,7 +250,7 @@
# 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"
# HG changeset patch
# Parent 64bc52351bf4f78c6130a2e8262f0422f7cfab9d
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -56,6 +56,9 @@
!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"