ttrss/include/version.php

24 lines
598 B
PHP
Raw Normal View History

2006-08-19 07:04:45 +00:00
<?php
2015-07-09 18:47:42 +00:00
define('VERSION_STATIC', '15.7');
2013-04-23 16:22:55 +00:00
function get_version() {
2013-04-24 04:56:37 +00:00
date_default_timezone_set('UTC');
2013-04-23 16:22:55 +00:00
$root_dir = dirname(dirname(__FILE__));
2013-06-26 13:20:03 +00:00
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/refs/heads/master")) {
2013-04-23 16:22:55 +00:00
2013-06-26 13:20:03 +00:00
$suffix = substr(trim(file_get_contents("$root_dir/.git/refs/heads/master")), 0, 7);
$timestamp = filemtime("$root_dir/.git/refs/heads/master");
define("GIT_VERSION_HEAD", $suffix);
define("GIT_VERSION_TIMESTAMP", $timestamp);
2013-04-23 16:22:55 +00:00
2015-07-09 18:47:42 +00:00
return VERSION_STATIC . " ($suffix)";
2013-04-23 16:22:55 +00:00
} else {
return VERSION_STATIC;
}
}
define('VERSION', get_version());
2005-08-25 14:01:20 +00:00
?>