upgrade version number to 2.3.0
This commit is contained in:
parent
97eeafb142
commit
c266bf189f
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
|
||||
define('AIRTIME_VERSION', '2.2.1');
|
||||
define('AIRTIME_VERSION', '2.3.0');
|
||||
|
|
|
@ -103,5 +103,9 @@ if (strcmp($version, "2.2.0") < 0) {
|
|||
if (strcmp($version, "2.2.1") < 0) {
|
||||
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.2.1/airtime-upgrade.php");
|
||||
pause();
|
||||
}
|
||||
}
|
||||
if (strcmp($version, "2.3.0") < 0) {
|
||||
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.3.0/airtime-upgrade.php");
|
||||
pause();
|
||||
}
|
||||
echo "******************************* Upgrade Complete *******************************".PHP_EOL;
|
||||
|
|
|
@ -15,7 +15,7 @@ import json
|
|||
import base64
|
||||
from configobj import ConfigObj
|
||||
|
||||
AIRTIME_VERSION = "2.2.1"
|
||||
AIRTIME_VERSION = "2.3.0"
|
||||
|
||||
|
||||
# TODO : Place these functions in some common module. Right now, media
|
||||
|
@ -386,4 +386,4 @@ class AirtimeApiClient(object):
|
|||
|
||||
def update_stream_setting_table(self, data):
|
||||
response = self.services.update_stream_setting_table(_post_data={'data': json.dumps(data)})
|
||||
return response
|
||||
return response
|
||||
|
|
Loading…
Reference in New Issue