mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Modify version output
This commit is contained in:
parent
774f041035
commit
e350dcd2d7
1 changed files with 8 additions and 2 deletions
|
@ -121,7 +121,13 @@ return (function() {
|
||||||
|
|
||||||
setlocale(LC_TIME, "POSIX");
|
setlocale(LC_TIME, "POSIX");
|
||||||
|
|
||||||
define("OPENVK_VERSION", "Altair Preview (Build 10)", false);
|
$showCommitHash = true; # plz remove when release
|
||||||
|
if(is_dir($gitDir = OPENVK_ROOT . "/.git") && $showCommitHash)
|
||||||
|
$ver = trim(`git --git-dir="$gitDir" log --pretty="%h" -n1 HEAD`) . "-nightly";
|
||||||
|
else
|
||||||
|
$ver = "Build 15";
|
||||||
|
|
||||||
|
define("OPENVK_VERSION", "Altair Preview ($ver)", false);
|
||||||
define("OPENVK_DEFAULT_PER_PAGE", 10, false);
|
define("OPENVK_DEFAULT_PER_PAGE", 10, false);
|
||||||
define("__OPENVK_ERROR_CLOCK_IN_FUTURE", "Server clock error: FK1200-DTF", false);
|
define("__OPENVK_ERROR_CLOCK_IN_FUTURE", "Server clock error: FK1200-DTF", false);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue