-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVersionInfo.pas
42 lines (33 loc) · 1.18 KB
/
VersionInfo.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{*****************************************************************}
{ }
{ Version information }
{ for ARSSE }
{ }
{ Copyright (c) 2010-2011 Gregor A. Cieslak (a.k.a. Shoozza) }
{ All rights reserved }
{ }
{ NOT free to distribute or modify }
{ }
{*****************************************************************}
unit VersionInfo;
interface
const
VERSION = '1.2.9';
VERSIONBUILD = '69';
// {$Define STABLE_VERSION}
// {$Define BETA_VERSION}
{$DEFINE DEV_VERSION}
{$IFDEF STABLE_VERSION}
VERSIONSTATUS = '';
CHANGESPERFIX = '';
{$ENDIF}
{$IFDEF BETA_VERSION}
VERSIONSTATUS = 'beta';
CHANGESPERFIX = '_';
{$ENDIF}
{$IFDEF DEV_VERSION}
VERSIONSTATUS = 'dev';
CHANGESPERFIX = '_';
{$ENDIF}
implementation
end.