blob: bdd6a15c2975c0713bae7077e66d6dd98d1f2140 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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 *
Bram Moolenaarccc18222007-05-10 18:25:20 +000013 * This doesn't use string concatenation, some compilers don't support it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 */
15
Bram Moolenaarbb76f242016-09-12 14:24:39 +020016#define VIM_VERSION_MAJOR 8
17#define VIM_VERSION_MAJOR_STR "8"
Bram Moolenaar98056532019-12-12 14:18:35 +010018#define VIM_VERSION_MINOR 2
19#define VIM_VERSION_MINOR_STR "2"
Bram Moolenaar071d4272004-06-13 20:20:40 +000020#define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
21
Bram Moolenaar98056532019-12-12 14:18:35 +010022#define VIM_VERSION_BUILD 283
23#define VIM_VERSION_BUILD_BCD 0x11b
24#define VIM_VERSION_BUILD_STR "283"
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#define VIM_VERSION_PATCHLEVEL 0
26#define VIM_VERSION_PATCHLEVEL_STR "0"
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010027// Used by MacOS port should be one of: development, alpha, beta, final
Bram Moolenaar3b1db362013-08-10 15:00:24 +020028#define VIM_VERSION_RELEASE final
Bram Moolenaar071d4272004-06-13 20:20:40 +000029
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 */
Bram Moolenaar98056532019-12-12 14:18:35 +010036#define VIM_VERSION_NODOT "vim82"
37#define VIM_VERSION_SHORT "8.2"
38#define VIM_VERSION_MEDIUM "8.2"
39#define VIM_VERSION_LONG "VIM - Vi IMproved 8.2 (2019 Dec 12)"
40#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 8.2 (2019 Dec 12, compiled "
41#define VIM_VERSION_LONG_ONLY "VIM - Vi IMproved 8.2"
42#define VIM_VERSION_DATE_ONLY "2019 Dec 12"