]> git.wh0rd.org - tt-rss.git/blobdiff - include/version.php
bump VERSION_STATIC due to Dojo changes
[tt-rss.git] / include / version.php
index 639d2a6b9ed5796b671312db467cde03911e6cd1..bc8e8695bbbf0885e53ef8cc3a9fa5916fba25c1 100644 (file)
@@ -1,3 +1,42 @@
 <?php
-       define('VERSION', "1.5.10");
+       define('VERSION_STATIC', '17.1');
+
+       function get_version() {
+               date_default_timezone_set('UTC');
+               $root_dir = dirname(dirname(__FILE__));
+
+               if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/HEAD")) {
+                       $head = trim(file_get_contents("$root_dir/.git/HEAD"));
+
+                       if ($head) {
+                               $matches = array();
+
+                               if (preg_match("/^ref: (.*)/", $head, $matches)) {
+                                       $ref = $matches[1];
+
+                                       $suffix = substr(trim(file_get_contents("$root_dir/.git/$ref")), 0, 7);
+                                       $timestamp = filemtime("$root_dir/.git/$ref");
+
+                                       define("GIT_VERSION_HEAD", $suffix);
+                                       define("GIT_VERSION_TIMESTAMP", $timestamp);
+
+                                       return VERSION_STATIC . " ($suffix)";
+
+                               } else {
+                                       $suffix = substr(trim($head), 0, 7);
+                                       $timestamp = filemtime("$root_dir/.git/HEAD");
+
+                                       define("GIT_VERSION_HEAD", $suffix);
+                                       define("GIT_VERSION_TIMESTAMP", $timestamp);
+
+                                       return VERSION_STATIC . " ($suffix)";
+                               }
+                       }
+               }
+
+               return VERSION_STATIC;
+
+       }
+
+       define('VERSION', get_version());
 ?>