1
0
forked from aniani/vim

Vim 7.4a BETA release.

This commit is contained in:
Bram Moolenaar
2013-07-06 15:44:11 +02:00
parent dc8b25cbf3
commit 913df81e74
162 changed files with 7864 additions and 2870 deletions

View File

@@ -15,6 +15,6 @@ REGEDIT4
[HKEY_LOCAL_MACHINE\Software\Vim\Gvim]
"path"="gvim.exe"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\Vim 7.3]
"DisplayName"="Vim 7.3: Edit with Vim popup menu entry"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\Vim 7.4a]
"DisplayName"="Vim 7.4a: Edit with Vim popup menu entry"
"UninstallString"="uninstal.exe"

View File

@@ -945,7 +945,7 @@ MAN1DIR = /man1
### Vim version (adjusted by a script)
VIMMAJOR = 7
VIMMINOR = 3
VIMMINOR = 4a
### Location of Vim files (should not need to be changed, and {{{1
### some things might not work when they are changed!)

View File

@@ -2,7 +2,7 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
<assemblyIdentity
processorArchitecture="*"
version="7.3.0.0"
version="7.4.0.0"
type="win32"
name="Vim"
/>

File diff suppressed because it is too large Load Diff

View File

@@ -15,13 +15,13 @@
#define VIM_VERSION_MAJOR 7
#define VIM_VERSION_MAJOR_STR "7"
#define VIM_VERSION_MINOR 3
#define VIM_VERSION_MINOR_STR "3"
#define VIM_VERSION_MINOR 4
#define VIM_VERSION_MINOR_STR "4"
#define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
#define VIM_VERSION_BUILD 277
#define VIM_VERSION_BUILD_BCD 0x115
#define VIM_VERSION_BUILD_STR "277"
#define VIM_VERSION_BUILD 278
#define VIM_VERSION_BUILD_BCD 0x116
#define VIM_VERSION_BUILD_STR "278"
#define VIM_VERSION_PATCHLEVEL 0
#define VIM_VERSION_PATCHLEVEL_STR "0"
/* Used by MacOS port should be one of: development, alpha, beta, final */
@@ -33,8 +33,8 @@
* VIM_VERSION_MEDIUM is used for the startup-screen.
* VIM_VERSION_LONG is used for the ":version" command and "Vim -h".
*/
#define VIM_VERSION_NODOT "vim73"
#define VIM_VERSION_SHORT "7.3"
#define VIM_VERSION_MEDIUM "7.3"
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.3 (2010 Aug 15)"
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.3 (2010 Aug 15, compiled "
#define VIM_VERSION_NODOT "vim74a"
#define VIM_VERSION_SHORT "7.4a"
#define VIM_VERSION_MEDIUM "7.4a BETA"
#define VIM_VERSION_LONG "VIM - Vi IMproved 7.4a BETA (2013 Jul 6)"
#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.4a BETA (2013 Jul 6, compiled "

View File

@@ -1,4 +1,4 @@
CODE PRELOAD EXECUTEONLY
DATA MULTIPLE SHARED
DESCRIPTION 'Vim 7.3'
DESCRIPTION 'Vim 7.4a'
HEAPSIZE 0,0

View File

@@ -1,5 +1,5 @@
CODE PRELOAD EXECUTEONLY
DATA MULTIPLE SHARED
DESCRIPTION 'Vim 7.3'
DESCRIPTION 'Vim 7.4a'
STACKSIZE 16000
HEAPSIZE 10000