parent
ff7ff473be
commit
acc0bf4393
20
CREDITS
20
CREDITS
|
@ -2,6 +2,26 @@
|
||||||
CREDITS
|
CREDITS
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
Version 2.3.0
|
||||||
|
-------------
|
||||||
|
Martin Konecny (martin.konecny@sourcefabric.org)
|
||||||
|
Role: Developer Team Lead
|
||||||
|
|
||||||
|
James Moon (james.moon@sourcefabric.org)
|
||||||
|
Role: Software Developer
|
||||||
|
|
||||||
|
Denise Rigato (denise.rigato@sourcefabric.org)
|
||||||
|
Role: Software Developer
|
||||||
|
|
||||||
|
Cliff Wang (cliff.wang@sourcefabric.org)
|
||||||
|
Role: QA
|
||||||
|
|
||||||
|
Mikayel Karapetian (michael.karapetian@sourcefabric.org)
|
||||||
|
Role: QA
|
||||||
|
|
||||||
|
Daniel James (daniel.james@sourcefabric.org)
|
||||||
|
Role: Documentor & QA
|
||||||
|
|
||||||
Version 2.2.1
|
Version 2.2.1
|
||||||
-------------
|
-------------
|
||||||
Martin Konecny (martin.konecny@sourcefabric.org)
|
Martin Konecny (martin.konecny@sourcefabric.org)
|
||||||
|
|
11
changelog
11
changelog
|
@ -1,3 +1,14 @@
|
||||||
|
2.3.0 - Jan 21st, 2013
|
||||||
|
* New features
|
||||||
|
* Localization (Brazilian, Chinese, Czech, English, French, German, Italian, Korean, Portugese, Russian, Spanish)
|
||||||
|
* User management page for non-admin users
|
||||||
|
* Listener statistics (Icecast/Shoutcast)
|
||||||
|
* Airtime no longer requires Apache document root
|
||||||
|
* Replay Gain offset in real-time
|
||||||
|
* Enable/disable replay gain
|
||||||
|
* Liquidsoap memory footprint improvements
|
||||||
|
* Automatically set cue points on import to avoid leading/trailing silence
|
||||||
|
|
||||||
2.2.1 - December 4th, 2012
|
2.2.1 - December 4th, 2012
|
||||||
* Bug fixes
|
* Bug fixes
|
||||||
* Improved fades between webstreams
|
* Improved fades between webstreams
|
||||||
|
|
|
@ -7,6 +7,7 @@ if [[ $EUID -ne 0 ]]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
set +e
|
||||||
dist=`lsb_release -is`
|
dist=`lsb_release -is`
|
||||||
echo "Generating locales"
|
echo "Generating locales"
|
||||||
for i in `ls /usr/share/airtime/locale | grep ".._.."`; do
|
for i in `ls /usr/share/airtime/locale | grep ".._.."`; do
|
||||||
|
@ -19,6 +20,7 @@ for i in `ls /usr/share/airtime/locale | grep ".._.."`; do
|
||||||
locale-gen "$i.utf8"
|
locale-gen "$i.utf8"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
set -e
|
||||||
|
|
||||||
if [ "$dist" = "Debian" ]; then
|
if [ "$dist" = "Debian" ]; then
|
||||||
/usr/sbin/locale-gen
|
/usr/sbin/locale-gen
|
||||||
|
|
Loading…
Reference in New Issue