ttrss/include/version.php

20 lines
427 B
PHP
Raw Normal View History

2006-08-19 07:04:45 +00:00
<?php
2013-06-12 10:27:31 +00:00
define('VERSION_STATIC', '1.8');
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__));
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/ORIG_HEAD")) {
$suffix = substr(trim(file_get_contents("$root_dir/.git/ORIG_HEAD")), 0, 7);
2013-04-23 16:22:55 +00:00
return VERSION_STATIC . ".$suffix";
} else {
return VERSION_STATIC;
}
}
define('VERSION', get_version());
2005-08-25 14:01:20 +00:00
?>