|
Karsten Hopp |
310867 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
310867 |
Subject: Patch 7.3.1310
|
|
Karsten Hopp |
310867 |
Fcc: outbox
|
|
Karsten Hopp |
310867 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
310867 |
Mime-Version: 1.0
|
|
Karsten Hopp |
310867 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
310867 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
310867 |
------------
|
|
Karsten Hopp |
310867 |
|
|
Karsten Hopp |
310867 |
Patch 7.3.1310
|
|
Karsten Hopp |
310867 |
Problem: Typos in nsis script. Can use better compression.
|
|
Karsten Hopp |
310867 |
Solution: Fix typos. Use lzma compression. (Ken Takata)
|
|
Karsten Hopp |
310867 |
Files: nsis/gvim.nsi
|
|
Karsten Hopp |
310867 |
|
|
Karsten Hopp |
310867 |
|
|
Karsten Hopp |
310867 |
*** ../vim-7.3.1309/nsis/gvim.nsi 2013-07-04 22:34:56.000000000 +0200
|
|
Karsten Hopp |
310867 |
--- nsis/gvim.nsi 2013-07-05 19:56:34.000000000 +0200
|
|
Karsten Hopp |
310867 |
***************
|
|
Karsten Hopp |
310867 |
*** 40,46 ****
|
|
Karsten Hopp |
310867 |
ComponentText "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer."
|
|
Karsten Hopp |
310867 |
DirText "Choose a directory to install Vim (must end in 'vim')"
|
|
Karsten Hopp |
310867 |
Icon icons\vim_16c.ico
|
|
Karsten Hopp |
310867 |
! # NSIS2 uses a different strategy with six diferent images in a strip...
|
|
Karsten Hopp |
310867 |
#EnabledBitmap icons\enabled.bmp
|
|
Karsten Hopp |
310867 |
#DisabledBitmap icons\disabled.bmp
|
|
Karsten Hopp |
310867 |
UninstallText "This will uninstall Vim ${VER_MAJOR}.${VER_MINOR} from your system."
|
|
Karsten Hopp |
310867 |
--- 40,46 ----
|
|
Karsten Hopp |
310867 |
ComponentText "This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer."
|
|
Karsten Hopp |
310867 |
DirText "Choose a directory to install Vim (must end in 'vim')"
|
|
Karsten Hopp |
310867 |
Icon icons\vim_16c.ico
|
|
Karsten Hopp |
310867 |
! # NSIS2 uses a different strategy with six different images in a strip...
|
|
Karsten Hopp |
310867 |
#EnabledBitmap icons\enabled.bmp
|
|
Karsten Hopp |
310867 |
#DisabledBitmap icons\disabled.bmp
|
|
Karsten Hopp |
310867 |
UninstallText "This will uninstall Vim ${VER_MAJOR}.${VER_MINOR} from your system."
|
|
Karsten Hopp |
310867 |
***************
|
|
Karsten Hopp |
310867 |
*** 56,61 ****
|
|
Karsten Hopp |
310867 |
--- 56,64 ----
|
|
Karsten Hopp |
310867 |
!packhdr temp.dat "upx --best --compress-icons=1 temp.dat"
|
|
Karsten Hopp |
310867 |
!endif
|
|
Karsten Hopp |
310867 |
|
|
Karsten Hopp |
310867 |
+ SetCompressor /SOLID lzma
|
|
Karsten Hopp |
310867 |
+ XPStyle on
|
|
Karsten Hopp |
310867 |
+
|
|
Karsten Hopp |
310867 |
# This adds '\vim' to the user choice automagically. The actual value is
|
|
Karsten Hopp |
310867 |
# obtained below with ReadINIStr.
|
|
Karsten Hopp |
310867 |
InstallDir "$PROGRAMFILES\Vim"
|
|
Karsten Hopp |
310867 |
***************
|
|
Karsten Hopp |
310867 |
*** 250,256 ****
|
|
Karsten Hopp |
310867 |
# Windows 95/98/ME: not supported
|
|
Karsten Hopp |
310867 |
Goto lbl_done
|
|
Karsten Hopp |
310867 |
lbl_winnt:
|
|
Karsten Hopp |
310867 |
! # Windows NT/2000/XT and later
|
|
Karsten Hopp |
310867 |
File /oname=vim.exe ${VIMSRC}\vimw32.exe
|
|
Karsten Hopp |
310867 |
lbl_done:
|
|
Karsten Hopp |
310867 |
StrCpy $2 "$2 vim view vimdiff"
|
|
Karsten Hopp |
310867 |
--- 253,259 ----
|
|
Karsten Hopp |
310867 |
# Windows 95/98/ME: not supported
|
|
Karsten Hopp |
310867 |
Goto lbl_done
|
|
Karsten Hopp |
310867 |
lbl_winnt:
|
|
Karsten Hopp |
310867 |
! # Windows NT/2000/XP and later
|
|
Karsten Hopp |
310867 |
File /oname=vim.exe ${VIMSRC}\vimw32.exe
|
|
Karsten Hopp |
310867 |
lbl_done:
|
|
Karsten Hopp |
310867 |
StrCpy $2 "$2 vim view vimdiff"
|
|
Karsten Hopp |
310867 |
*** ../vim-7.3.1309/src/version.c 2013-07-05 18:29:38.000000000 +0200
|
|
Karsten Hopp |
310867 |
--- src/version.c 2013-07-05 19:50:11.000000000 +0200
|
|
Karsten Hopp |
310867 |
***************
|
|
Karsten Hopp |
310867 |
*** 730,731 ****
|
|
Karsten Hopp |
310867 |
--- 730,733 ----
|
|
Karsten Hopp |
310867 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
310867 |
+ /**/
|
|
Karsten Hopp |
310867 |
+ 1310,
|
|
Karsten Hopp |
310867 |
/**/
|
|
Karsten Hopp |
310867 |
|
|
Karsten Hopp |
310867 |
--
|
|
Karsten Hopp |
310867 |
ARTHUR: What does it say?
|
|
Karsten Hopp |
310867 |
BROTHER MAYNARD: It reads ... "Here may be found the last words of Joseph of
|
|
Karsten Hopp |
310867 |
Aramathea." "He who is valorous and pure of heart may find
|
|
Karsten Hopp |
310867 |
the Holy Grail in the aaaaarrrrrrggghhh..."
|
|
Karsten Hopp |
310867 |
ARTHUR: What?
|
|
Karsten Hopp |
310867 |
BROTHER MAYNARD: "The Aaaaarrrrrrggghhh..."
|
|
Karsten Hopp |
310867 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
310867 |
|
|
Karsten Hopp |
310867 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
310867 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
310867 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
310867 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|