2.1.3 preparation
This commit is contained in:
parent
46604fdf59
commit
0286aa364e
7 changed files with 27 additions and 8 deletions
7
CREDITS
7
CREDITS
|
@ -1,3 +1,10 @@
|
|||
=======
|
||||
CREDITS
|
||||
=======
|
||||
Version 2.1.3
|
||||
-------------
|
||||
Same as previous version.
|
||||
|
||||
=======
|
||||
CREDITS
|
||||
=======
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1,2 +1,2 @@
|
|||
PRODUCT_ID=Airtime
|
||||
PRODUCT_RELEASE=2.1.2
|
||||
PRODUCT_RELEASE=2.1.3
|
||||
|
|
12
changelog
12
changelog
|
@ -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
|
||||
* Bug Fixes
|
||||
* Fixed problem where playout engine may not retrieve program schedule after extended periods of user inactivity.
|
||||
|
|
|
@ -152,10 +152,6 @@ fi
|
|||
if [ -e /etc/init.d/airtime-playout ]; then
|
||||
invoke-rc.d airtime-playout stop > /dev/null 2>&1
|
||||
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 DO_UPGRADE
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
|
||||
define('AIRTIME_VERSION', '2.1.2');
|
||||
define('AIRTIME_VERSION', '2.1.3');
|
||||
|
|
|
@ -111,6 +111,10 @@ if (strcmp($version, "2.1.1") < 0){
|
|||
if (strcmp($version, "2.1.2") < 0){
|
||||
passthru("php --php-ini $SCRIPTPATH/../airtime-php.ini $SCRIPTPATH/../upgrades/airtime-2.1.2/airtime-upgrade.php");
|
||||
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;
|
||||
|
|
|
@ -20,7 +20,7 @@ from configobj import ConfigObj
|
|||
import string
|
||||
import hashlib
|
||||
|
||||
AIRTIME_VERSION = "2.1.2"
|
||||
AIRTIME_VERSION = "2.1.3"
|
||||
|
||||
def api_client_factory(config, logger=None):
|
||||
if logger != None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue