Mercurial > vim
annotate src/version.h @ 13280:fbda23eb0996 v8.0.1514
patch 8.0.1514: getting the list of changes is not easy
commit https://github.com/vim/vim/commit/07ad816525da67cab3c0db21d1286d221dbc7477
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Feb 13 13:59:59 2018 +0100
patch 8.0.1514: getting the list of changes is not easy
Problem: Getting the list of changes is not easy.
Solution: Add the getchangelist() function. (Yegappan Lakshmanan,
closes #2634)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 13 Feb 2018 14:15:05 +0100 |
parents | 9f48eab77d62 |
children | 1174611ad715 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 */ | |
8 | |
9 /* | |
10 * Define the version number, name, etc. | |
11 * The patchlevel is in included_patches[], in version.c. | |
12 * | |
1214 | 13 * This doesn't use string concatenation, some compilers don't support it. |
7 | 14 */ |
15 | |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
16 #define VIM_VERSION_MAJOR 8 |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
17 #define VIM_VERSION_MAJOR_STR "8" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
18 #define VIM_VERSION_MINOR 0 |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
19 #define VIM_VERSION_MINOR_STR "0" |
7 | 20 #define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR) |
21 | |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
22 #define VIM_VERSION_BUILD 281 |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
23 #define VIM_VERSION_BUILD_BCD 0x119 |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
24 #define VIM_VERSION_BUILD_STR "281" |
7 | 25 #define VIM_VERSION_PATCHLEVEL 0 |
26 #define VIM_VERSION_PATCHLEVEL_STR "0" | |
27 /* Used by MacOS port should be one of: development, alpha, beta, final */ | |
5294 | 28 #define VIM_VERSION_RELEASE final |
7 | 29 |
30 /* | |
31 * VIM_VERSION_NODOT is used for the runtime directory name. | |
32 * VIM_VERSION_SHORT is copied into the swap file (max. length is 6 chars). | |
33 * VIM_VERSION_MEDIUM is used for the startup-screen. | |
34 * VIM_VERSION_LONG is used for the ":version" command and "Vim -h". | |
35 */ | |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
36 #define VIM_VERSION_NODOT "vim80" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
37 #define VIM_VERSION_SHORT "8.0" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
38 #define VIM_VERSION_MEDIUM "8.0" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
39 #define VIM_VERSION_LONG "VIM - Vi IMproved 8.0 (2016 Sep 12)" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
40 #define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 8.0 (2016 Sep 12, compiled " |