- Release v0.04
This commit is contained in:
parent
70c51c5368
commit
5fffda62b4
2 changed files with 7 additions and 28 deletions
|
@ -23,6 +23,13 @@ Lbre Media Server ChangeLog
|
|||
|
||||
*******************************************************************************
|
||||
|
||||
V 0.04:
|
||||
|
||||
+ GUI: added FPS counter
|
||||
+ GUI: added FPS selector
|
||||
+ Added folders to fonts
|
||||
+ Video: Live camera input
|
||||
|
||||
v 0.03:
|
||||
- Added -log option to command line to write to a textfile the debug info. The logs file are in the folder ./log and have the format log_DDMMYY-HHMMSS.txt where DD day, MM month, YY year, HH hours, MM minutes SS seconds of the time when libremediaserver opens.
|
||||
- Added option -gui in command line to show the Pure Data GUI's
|
||||
|
|
|
@ -1,28 +0,0 @@
|
|||
#!/bin/bash
|
||||
##############################################################################
|
||||
# Script de instalación de las dependencias de Pure Media Server
|
||||
# en Debian Squeeze.
|
||||
# Necesita root para ejecutar
|
||||
# (c) 2012 Santi Noreña
|
||||
# GPL License
|
||||
###############################################################################
|
||||
# Comprobamos root
|
||||
(( EUID )) && echo ‘You need to be root.’ && exit 1
|
||||
# Instalamos OLA desde el repositorio del proyecto
|
||||
# copia de seguridad de sources.list
|
||||
cp /etc/apt/sources.list /etc/apt/sources.list.old
|
||||
# Comprobamos que el repositorio no está en soucers.list
|
||||
output=`grep apt.openlighting.org /etc/apt/sources.list | wc -l`
|
||||
if [ "$output" -eq "0" ]; then
|
||||
#Añadimos el repositorio ola a sources.list
|
||||
echo "deb http://apt.openlighting.org/debian/ squeeze main" >> /etc/apt/sources.list
|
||||
fi
|
||||
apt-get update
|
||||
apt-get -y install ola
|
||||
if [ "$?" -eq "0" ]; then
|
||||
echo "apt-get finish ok"
|
||||
else "apt-get return errors!"
|
||||
fi
|
||||
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue