X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=version.php;h=54d2e436ea7f5d3ca3083c8d59fc7d47b19e26b5;hb=31b570aaeb5b66a9511552facc454ff77a99642b;hp=1b3db02e8fdeb9893cfaaaeaad54a738f401149a;hpb=90b3d069d96b99671af51726e2953352738abb75;p=fa-stable.git diff --git a/version.php b/version.php index 1b3db02e..54d2e436 100644 --- a/version.php +++ b/version.php @@ -4,22 +4,22 @@ // Settings in this file can be automatically updated at any time during software update. // -// Internal database version compatibility check. Do not change. -$db_version = "2.3rc"; +// Versions used by source/database version compatibility checks. Do not change. +$db_version = "2.4.0"; +$src_version = "2.4 beta"; // application version - can be overriden in config.php -if (!isset($version)) - $version = "2.4 alpha"; +$version = isset($SysPrefs->version) ? $SysPrefs->version : $src_version; //====================================================================== // Extension packages repository settings // // Extensions repository. Can be overriden in config.php -if (!isset($repo_auth)) - $repo_auth = array( +$repo_auth = isset($SysPrefs->repo_auth) ? $SysPrefs->repo_auth : +array( 'login' => 'anonymous', 'pass' => 'password', 'host' => 'repo.frontaccounting.eu', // repo server address - 'branch' => '2.3' // Repository branch for current sources version + 'branch' => '2.4' // Repository branch for current sources version );