From f8eb1fe4a50308cf6f5b148eeb37678d28407553 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Sun, 20 Mar 2016 14:47:27 -0500 Subject: [PATCH 1/2] installer: add notification dialog upon completion of install also, OE->LE rebranding Signed-off-by: Matt DeVillier --- packages/tools/installer/scripts/installer | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/tools/installer/scripts/installer b/packages/tools/installer/scripts/installer index 8c029381be..eef0055868 100755 --- a/packages/tools/installer/scripts/installer +++ b/packages/tools/installer/scripts/installer @@ -366,6 +366,11 @@ do_install_quick() { rmdir $TMPDIR/part2 >> $LOGFILE 2>&1 fi + # install complete + MSG_TITLE="\Z1[ LibreELEC Install Complete ]\Zn" + MSG_DETAIL="\nYou may now remove the install media and reboot\n" + dialog --colors --backtitle "$BACKTITLE" --title "$MSG_TITLE" --msgbox "$MSG_DETAIL" 6 52 + menu_main ;; 1) @@ -484,6 +489,11 @@ do_install_custom() { msg_progress_install "100" "remove $TMPDIR/part1" rmdir $TMPDIR/part1 >> $LOGFILE 2>&1 + # install complete + MSG_TITLE="\Z1[ LibreELEC Install Complete ]\Zn" + MSG_DETAIL="\nYou may now remove the install media and reboot\n" + dialog --colors --backtitle "$BACKTITLE" --title "$MSG_TITLE" --msgbox "$MSG_DETAIL" 6 52 + menu_main ;; 1) @@ -621,7 +631,7 @@ do_poweroff() { # setup needed variables INSTALLER_VERSION="0.2.6" OS_VERSION=$(lsb_release) -BACKTITLE="OpenELEC Installer $INSTALLER_VERSION - $OS_VERSION" +BACKTITLE="LibreELEC Installer $INSTALLER_VERSION - $OS_VERSION" TMPDIR="/tmp/installer" LOGFILE="$TMPDIR/install.log" From 5c4f2a143b6407856dd5c9bb362949df5c6d0153 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Sun, 20 Mar 2016 14:51:30 -0500 Subject: [PATCH 2/2] installer: bump version Signed-off-by: Matt DeVillier --- packages/tools/installer/scripts/installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tools/installer/scripts/installer b/packages/tools/installer/scripts/installer index eef0055868..702ba271ff 100755 --- a/packages/tools/installer/scripts/installer +++ b/packages/tools/installer/scripts/installer @@ -629,7 +629,7 @@ do_poweroff() { } # setup needed variables -INSTALLER_VERSION="0.2.6" +INSTALLER_VERSION="0.2.7" OS_VERSION=$(lsb_release) BACKTITLE="LibreELEC Installer $INSTALLER_VERSION - $OS_VERSION"