-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexponent_version.php
More file actions
59 lines (56 loc) · 2.18 KB
/
exponent_version.php
File metadata and controls
59 lines (56 loc) · 2.18 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
##################################################
#
# Copyright (c) 2004-2006 OIC Group, Inc.
# Written and Designed by James Hunt
#
# This file is part of Exponent
#
# Exponent is free software; you can redistribute
# it and/or modify it under the terms of the GNU
# General Public License as published by the Free
# Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# GPL: http://www.gnu.org/licenses/gpl.txt
#
##################################################
if (!defined('EXPONENT_VERSION_MAJOR')) {
/* exdoc
* If this constant is set to a true value (1 is the prefered value), then
* the system will behave slightly differently, to accomodate for developers
* and their environment.
*/
//##################################################################################//
//### IF YOU ARE WANTING TO CHANGE THE DEVELOPMENT DEFINE, YOU CAN NOW FIND IT IN ##//
//### THE config.php FILE OR CHANGE IT VIA THE ADMIN CONTROL PANEL ##//
//##################################################################################//
//define('DEVELOPMENT',0); // CHANGE FOR DIST
//##################################################################################//
/* exdoc
* This is the major version number of Exponent; the first 0 in 0.97.0
*/
define('EXPONENT_VERSION_MAJOR','0');
/* exdoc
* This is the minor version number of Exponent; the 97 in 0.97.0
*/
define('EXPONENT_VERSION_MINOR','99');
/* exdoc
* This is the revision version number of Exponent; the second 0 in 0.97.0
*/
define('EXPONENT_VERSION_REVISION','0');
/* exdoc
* This is the date that this version of Exponent was exported from BZR and built.
*/
define('EXPONENT_VERSION_BUILDDATE','1669478030');
/* exdoc
* This specifies the type of release, either 'alpha','beta','rc' or 'ga' (for stable).
*/
define('EXPONENT_VERSION_TYPE','beta');
/* exdoc
* This number is bumped each time a distribution of a single version is
* released. For instance, the 3rd beta has an version type iteration of 3.
*/
define('EXPONENT_VERSION_ITERATION','3'); // only applies to betas/alphas / rcs
}
?>