Adding missing stuff from previous revision

This commit is contained in:
md2211 2007-02-14 22:28:49 +00:00
parent 7db969b9fe
commit 51eee895c7

View file

@ -6,12 +6,15 @@ import os
PROGRAM_NAME = 'D2X-Rebirth' PROGRAM_NAME = 'D2X-Rebirth'
#SVN_REVISION = os.popen('echo -n `LANG=C svn info | grep ^Revision | cut -d\ -f2`').read()
# version number # version number
D2XMAJOR = 0 D2XMAJOR = 0
D2XMINOR = 51 D2XMINOR = 51
# optional micro revision: set it to SVN_REVISION if available, zero otherwise. # optional micro revision: set it to SVN_REVISION if available, zero otherwise.
D2XMICRO = 0 D2XMICRO = 0
#D2XMICRO = int(SVN_REVISION)
VERSION = str(D2XMAJOR) + '.' + str(D2XMINOR) VERSION = str(D2XMAJOR) + '.' + str(D2XMINOR)