X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=version.php;h=c791f921bc16a1c1299ee91ae44175586da8a4f5;hb=fa61bf6ef19e3220ab34c38819f79d03b60dfcae;hp=9e5e760bb77c351cbad1184b4228cda83e759b5e;hpb=70d5851626e1839021166e9e825cb7089bf0be8b;p=fa-stable.git diff --git a/version.php b/version.php index 9e5e760b..c791f921 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.0"; // application version - can be overriden in config.php -if (!isset($version)) - $version = "2.3.22"; +$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 );