upgrade version number to 2.3.0

This commit is contained in:
Martin Konecny 2013-01-15 12:31:41 -05:00
parent 97eeafb142
commit c266bf189f
4 changed files with 9 additions and 5 deletions

View File

@ -1,2 +1,2 @@
PRODUCT_ID=Airtime
PRODUCT_RELEASE=2.2.1
PRODUCT_RELEASE=2.3.0

View File

@ -1,3 +1,3 @@
<?php
define('AIRTIME_VERSION', '2.2.1');
define('AIRTIME_VERSION', '2.3.0');

View File

@ -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;

View File

@ -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