X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=version.php;h=9a4bf296e2970d8433cb9b5bb5756032f783109f;hb=7561718ee5113232ce917f63085d272884b0929c;hp=73ae4b36f8b11b42fd1dbccbb796c999b2888e00;hpb=d12d331db1f5e4c6c17e8a44a1bda3f762ff1298;p=fa-stable.git diff --git a/version.php b/version.php index 73ae4b36..9a4bf296 100644 --- a/version.php +++ b/version.php @@ -4,27 +4,22 @@ // Settings in this file can be automatically updated at any time during software update. // -// Internal data-source version compatibility check. Do not change. -$core_version = "2.3rc"; +// Internal database version compatibility check. Do not change. +$db_version = "2.4.0"; -// application version - can be set also in config.php +// application version - can be overriden in config.php if (!isset($version)) - $version = "2.3RC1"; + $version = "2.4 alpha"; //====================================================================== // Extension packages repository settings // -// Default authorization data. Can be set also in config.php +// Extensions repository. Can be overriden in config.php if (!isset($repo_auth)) $repo_auth = array( 'login' => 'anonymous', 'pass' => 'password', + 'host' => 'repo.frontaccounting.eu', // repo server address + 'branch' => '2.3' // Repository branch for current sources version ); - -// Repository branch for current sources version -$FA_repo_version = '2.3'; - -// Extension packages repository url -$repository = 'http://'.$repo_auth['login'].':'.$repo_auth['pass'].'@'.'repo.frontaccounting.eu' - .'/index.php?path=';