Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiopichler committed Aug 17, 2016
1 parent b601fde commit a26b007
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
2 changes: 1 addition & 1 deletion installer/linux/FPM-Player/uninstall
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

echo
echo "FPM Player (Desinstalação)"
echo "Copyright (c) 2016 Fábio Pichler, Todos os direitos Reservados"
echo "Copyright (c) 2016, Fábio Pichler, Todos os direitos Reservados"
echo

if [ ! `whoami` = "root" ]
Expand Down
4 changes: 2 additions & 2 deletions installer/linux/create
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
#*******************************************************************************

DIR_NAME="FPM-Player-1.1.0-setup-Linux-x64"
DIR_NAME="FPM-Player-2.0.0-setup-Linux-x64"

mkdir output/${DIR_NAME}

Expand All @@ -27,4 +27,4 @@ chmod +x "${DIR_NAME}/7zr"
chmod +x "${DIR_NAME}/install"
chmod +x "${DIR_NAME}/uninstall"

./7zr a "${DIR_NAME}/data.bin" "../FPM-Player"
./7zr a "${DIR_NAME}/data.bin" "../FPM-Player"
16 changes: 14 additions & 2 deletions installer/linux/install
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#*******************************************************************************

echo
echo "FPM Player 1.1.0 (Instalação)"
echo "Copyright (c) 2016 Fábio Pichler, Todos os direitos Reservados"
echo "FPM Player 2.0.0 (Instalação)"
echo "Copyright (c) 2016, Fábio Pichler, Todos os direitos Reservados"
echo

if [ ! `whoami` = "root" ]
Expand All @@ -25,6 +25,18 @@ then
exit
fi

if [ -e "/opt/FPM-Player/uninstall" ]
then
echo "Desinstalando a versão antiga do programa... Aguarde..."
echo
echo "--------------------------------------------------------"

/opt/FPM-Player/uninstall

echo "--------------------------------------------------------"
echo
fi

echo "Iniciando o programa de instalação..."
echo

Expand Down
7 changes: 6 additions & 1 deletion installer/linux/uninstall
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,9 @@
#
#*******************************************************************************

/opt/FPM-Player/uninstall


if [ -e "/opt/FPM-Player/uninstall" ]
then
/opt/FPM-Player/uninstall
fi
2 changes: 1 addition & 1 deletion src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#define CURRENT_RELEASE_DATE "17/08/2016"

;// Nome do arquivo da lista de rádios
#define FILE_RADIOLIST "RadioList_2016-05-16.fprp"
#define FILE_RADIOLIST "RadioList_2016-08-17.fprp"

;// Data de lançamento da lista de rádios
#define FILE_RADIOLIST_DATE "2016-05-16"

0 comments on commit a26b007

Please sign in to comment.