From 0cf2fbf3fe87aba393ff73355a199d29606a97bf Mon Sep 17 00:00:00 2001 From: fkwa Date: Thu, 18 Jun 2020 14:31:15 +0300 Subject: [PATCH] Release Technical Preview 1 --- bootstrap.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap.php b/bootstrap.php index 909ae702..ab38f2a6 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -121,13 +121,13 @@ return (function() { setlocale(LC_TIME, "POSIX"); - $showCommitHash = true; # plz remove when release + $showCommitHash = false; # 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"; + $ver = "Technical Preview 1"; - define("OPENVK_VERSION", "Altair Preview ($ver)", false); + define("OPENVK_VERSION", "Altair ($ver)", false); define("OPENVK_DEFAULT_PER_PAGE", 10, false); define("__OPENVK_ERROR_CLOCK_IN_FUTURE", "Server clock error: FK1200-DTF", false); });