Change the name in the GUI

Fix instalation scripts
	modified:   libremediaserver/libremediaserver.ui
	modified:   libremediaserver/scripts/install_precise.sh
	modified:   libremediaserver/scripts/install_wheezy.sh
This commit is contained in:
Santi Noreña 2013-01-09 14:45:04 +01:00
parent fb02f89934
commit a85d5503b9
3 changed files with 10 additions and 10 deletions

View file

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<author>Santi Noreña puremediaserver@gmail.com</author> <author>Santi Noreña belfegor@gmail.com</author>
<class>PureMediaServer</class> <class>LibreMediaServer</class>
<widget class="QMainWindow" name="PureMediaServer"> <widget class="QMainWindow" name="LibreMediaServer">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>800</width> <width>800</width>
<height>600</height> <height>605</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>Pure Media Server</string> <string>LibreMediaServer</string>
</property> </property>
<widget class="QWidget" name="centralwidget"> <widget class="QWidget" name="centralwidget">
<widget class="QTabWidget" name="tabWidget"> <widget class="QTabWidget" name="tabWidget">
@ -24,7 +24,7 @@
<x>0</x> <x>0</x>
<y>120</y> <y>120</y>
<width>791</width> <width>791</width>
<height>431</height> <height>441</height>
</rect> </rect>
</property> </property>
<property name="tabShape"> <property name="tabShape">

View file

@ -3,7 +3,7 @@
# Script de instalación de las dependencias de Libre Media Server # Script de instalación de las dependencias de Libre Media Server
# en Ubuntu Precise 12.04. # en Ubuntu Precise 12.04.
# Necesita root para ejecutar # Necesita root para ejecutar
# (c) 2012 Santi Noreña # (c) 2012-2013 Santi Noreña
# GPL License # GPL License
############################################################################### ###############################################################################
# Comprobamos root # Comprobamos root
@ -18,7 +18,7 @@ if [ "$output" -eq "0" ]; then
echo "deb http://apt.openlighting.org/debian/ precise main" >> /etc/apt/sources.list echo "deb http://apt.openlighting.org/debian/ precise main" >> /etc/apt/sources.list
fi fi
apt-get update apt-get update
apt-get -y install ola puredata tcl tk apt-get -y --force-yes install ola puredata tcl tklibqtcore4 libqtgui4
if [ "$?" -eq "0" ]; then if [ "$?" -eq "0" ]; then
echo "apt-get finish ok" echo "apt-get finish ok"
else "apt-get return errors!" else "apt-get return errors!"

View file

@ -3,7 +3,7 @@
# Script de instalación de las dependencias de Libre Media Server # Script de instalación de las dependencias de Libre Media Server
# en Debian Wheezy. # en Debian Wheezy.
# Necesita root para ejecutar # Necesita root para ejecutar
# (c) 2012 Santi Noreña # (c) 2012-2013 Santi Noreña
# GPL License # GPL License
############################################################################### ###############################################################################
# Comprobamos root # Comprobamos root
@ -12,7 +12,7 @@
dpkg -i ola_0.8.26-1_i386.deb dpkg -i ola_0.8.26-1_i386.deb
# Install Pure Data y OLA # Install Pure Data y OLA
# libav para generar thumbs # libav para generar thumbs
apt-get install puredata gem tcl tk libav-tools pd-pdogg pd-pan apt-get -y --force-yes install puredata tcl tk libav-tools libqtcore4 libqtgui4 libmagick++5
if [ "$?" -eq "0" ]; then if [ "$?" -eq "0" ]; then
echo "apt-get finish ok" echo "apt-get finish ok"
else "apt-get return errors!" else "apt-get return errors!"