upgrade version number to 2.3.0
This commit is contained in:
parent
97eeafb142
commit
c266bf189f
2
VERSION
2
VERSION
|
@ -1,2 +1,2 @@
|
||||||
PRODUCT_ID=Airtime
|
PRODUCT_ID=Airtime
|
||||||
PRODUCT_RELEASE=2.2.1
|
PRODUCT_RELEASE=2.3.0
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<?php
|
<?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) {
|
if (strcmp($version, "2.2.1") < 0) {
|
||||||
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.2.1/airtime-upgrade.php");
|
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.2.1/airtime-upgrade.php");
|
||||||
pause();
|
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;
|
echo "******************************* Upgrade Complete *******************************".PHP_EOL;
|
||||||
|
|
|
@ -15,7 +15,7 @@ import json
|
||||||
import base64
|
import base64
|
||||||
from configobj import ConfigObj
|
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
|
# 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):
|
def update_stream_setting_table(self, data):
|
||||||
response = self.services.update_stream_setting_table(_post_data={'data': json.dumps(data)})
|
response = self.services.update_stream_setting_table(_post_data={'data': json.dumps(data)})
|
||||||
return response
|
return response
|
||||||
|
|
Loading…
Reference in New Issue