forked from FrontAccountingERP/FA
-
Notifications
You must be signed in to change notification settings - Fork 2
/
version.php
25 lines (21 loc) · 890 Bytes
/
version.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
//==========================================================================================
//
// Settings in this file can be automatically updated at any time during software update.
//
// Versions used by source/database version compatibility checks. Do not change.
$db_version = "2.4.1";
$src_version = "2.4.3";
// application version - can be overriden in config.php
$version = isset($SysPrefs->version) ? $SysPrefs->version : $src_version;
//======================================================================
// Extension packages repository settings
//
// Extensions repository. Can be overriden in config.php
$repo_auth = isset($SysPrefs->repo_auth) ? $SysPrefs->repo_auth :
array(
'login' => 'anonymous',
'pass' => 'password',
'host' => 'repo.frontaccounting.eu', // repo server address
'branch' => '2.4' // Repository branch for current sources version
);