2.1.3 preparation

This commit is contained in:
Martin Konecny 2012-07-03 16:43:10 -04:00
parent 46604fdf59
commit 0286aa364e
7 changed files with 27 additions and 8 deletions

View file

@ -1,3 +1,10 @@
=======
CREDITS
=======
Version 2.1.3
-------------
Same as previous version.
======= =======
CREDITS CREDITS
======= =======

View file

@ -1,2 +1,2 @@
PRODUCT_ID=Airtime PRODUCT_ID=Airtime
PRODUCT_RELEASE=2.1.2 PRODUCT_RELEASE=2.1.3

View file

@ -1,3 +1,15 @@
2.1.3 - July 4th, 2012
* Changes
* Clarify inputs and output labels under stream settings
* Bug Fixes
* Fix playout engine crashing in rare cases after the system is restarted
* Fix entries in the Calendar unable to have multiple icons (recorded icon, soundcloud icon etc.)
* Fixed unwatching a watched folder with a large number of files (50,000+) can take a long time
* Fixed files deleted in the Web UI would delete files from the disk in watched folders
* Fixed jQuery widgets not showing the incorrectly showing the past Sunday on Sunday
* Fixed dragging and dropping tracks into a live show could cause to web UI to become unsynchronized from what is actually playing
* Fixed unable to receive mono streams for Master or Show source rebroadcasts
2.1.2 - June 18th, 2012 2.1.2 - June 18th, 2012
* Bug Fixes * Bug Fixes
* Fixed problem where playout engine may not retrieve program schedule after extended periods of user inactivity. * Fixed problem where playout engine may not retrieve program schedule after extended periods of user inactivity.

View file

@ -152,10 +152,6 @@ fi
if [ -e /etc/init.d/airtime-playout ]; then if [ -e /etc/init.d/airtime-playout ]; then
invoke-rc.d airtime-playout stop > /dev/null 2>&1 invoke-rc.d airtime-playout stop > /dev/null 2>&1
fi fi
if [ -e /etc/init.d/airtime-show-recorder ]; then
invoke-rc.d airtime-show-recorder stop > /dev/null 2>&1
fi
#export these variables to make them available in sub bash scripts #export these variables to make them available in sub bash scripts
export DO_UPGRADE export DO_UPGRADE

View file

@ -1,3 +1,3 @@
<?php <?php
define('AIRTIME_VERSION', '2.1.2'); define('AIRTIME_VERSION', '2.1.3');

View file

@ -112,5 +112,9 @@ if (strcmp($version, "2.1.2") < 0){
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.1.2/airtime-upgrade.php"); passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.1.2/airtime-upgrade.php");
pause(); pause();
} }
if (strcmp($version, "2.1.3") < 0){
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.1.3/airtime-upgrade.php");
pause();
}
echo "******************************* Upgrade Complete *******************************".PHP_EOL; echo "******************************* Upgrade Complete *******************************".PHP_EOL;

View file

@ -20,7 +20,7 @@ from configobj import ConfigObj
import string import string
import hashlib import hashlib
AIRTIME_VERSION = "2.1.2" AIRTIME_VERSION = "2.1.3"
def api_client_factory(config, logger=None): def api_client_factory(config, logger=None):
if logger != None: if logger != None: