Make FireflyShell version number format match the server and plugins.

This commit is contained in:
Mike Crowe 2006-05-30 13:14:43 +00:00
parent 94ebfc8498
commit 50f24f23b4
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/* Version number of package */
#define VERSION_MAJOR 0
#define VERSION_MID 1
#define VERSION_MAJOR 1
#define VERSION_MID 0
#define VERSION_MINOR 0
#define VERSION_BUILD $WCREV$
@ -10,4 +10,4 @@
#define VERSION_STRIZE2(x) #x
#define VERSION_STRIZE(x) VERSION_STRIZE2(x)
#define VERSION_STRING VERSION_STRIZE(VERSION_MAJOR) "." VERSION_STRIZE(VERSION_MID) "-svn" VERSION_STRIZE(VERSION_BUILD) VERSION_LOCAL
#define VERSION_STRING VERSION_STRIZE(VERSION_MAJOR) "." VERSION_STRIZE(VERSION_MID) " svn-" VERSION_STRIZE(VERSION_BUILD) VERSION_LOCAL