-
Notifications
You must be signed in to change notification settings - Fork 55
/
version.php
25 lines (21 loc) · 876 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 = '0.1';
$src_version = '0.7';
// 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.notrinos.com', // repo server address
'branch' => '0.1' // Repository branch for current sources version
);