diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-12 10:09:49 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-12 10:09:49 -0500 |
commit | 42c368cb01ae1edb36726a14f3a25539dd3ce7f6 (patch) | |
tree | 197416413cebf406f617a7aeff3336c064109657 /app/constants.php | |
parent | b061945f0e716a026fe722d5f0ba04f86982d3fc (diff) |
Show version number from git-archive
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/constants.php b/app/constants.php index 4201e6e4..a09aac19 100644 --- a/app/constants.php +++ b/app/constants.php @@ -8,7 +8,7 @@ defined('DEBUG_FILE') or define('DEBUG_FILE', getenv('DEBUG_FILE') ?: __DIR__.DI defined('PLUGINS_DIR') or define('PLUGINS_DIR', __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'plugins'); // Application version -defined('APP_VERSION') or define('APP_VERSION', 'master'); +defined('APP_VERSION') or define('APP_VERSION', build_app_version('$Format:%d$', '$Format:%H$')); // Database driver: sqlite, mysql or postgres defined('DB_DRIVER') or define('DB_DRIVER', 'sqlite'); |