From 156eb704a76b95ae632ec904fba6230856b34c55 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 17 Feb 2016 14:48:07 +0000 Subject: [PATCH] RSS reader included within selective local restore --- src/freedombone-controlpanel | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/freedombone-controlpanel b/src/freedombone-controlpanel index d12ea08b..475fc50a 100755 --- a/src/freedombone-controlpanel +++ b/src/freedombone-controlpanel @@ -932,7 +932,7 @@ function restore_from_usb { trap "rm -f $data" 0 1 2 5 15 dialog --backtitle $"Freedombone Control Panel" \ --title $"Restore from USB backup" \ - --radiolist $"Choose an application to restore:" 30 70 27 \ + --radiolist $"Choose an application to restore:" 31 70 28 \ 1 $"Everything" on \ 2 $"Return to the backup and restore menu" off \ 3 $"Configuration files" off \ @@ -960,7 +960,8 @@ function restore_from_usb { 25 $"Email" off \ 26 $"DLNA" off \ 27 $"VoIP" off \ - 28 $"Tox" off 2> $data + 28 $"RSS reader" off \ + 29 $"Tox" off 2> $data sel=$? case $sel in 1) break;; @@ -994,7 +995,8 @@ function restore_from_usb { 25) ${PROJECT_NAME}-restore-local $USB_DRIVE email;; 26) ${PROJECT_NAME}-restore-local $USB_DRIVE dlna;; 27) ${PROJECT_NAME}-restore-local $USB_DRIVE voip;; - 28) ${PROJECT_NAME}-restore-local $USB_DRIVE tox;; + 28) ${PROJECT_NAME}-restore-local $USB_DRIVE ttrss;; + 29) ${PROJECT_NAME}-restore-local $USB_DRIVE tox;; esac done any_key