diff --git a/README.md b/README.md index 8b79e1d..d0a2786 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,12 @@ ## Overview ### Helium_Helper.sh - Interactive installer and updater script -- Installs to `/home//.apps/Helium` | changeable in line 16 `INSTALL_PATH` +- Installs to `/home//.apps/Helium` | changeable in line 27 `INSTALL_PATH` - Assumes: - - Presence of `/home//.apps/Helium` when updating | changeable in line 16 `INSTALL_PATH` - - Executable named `helium-browser.AppImage` | for convenience so launchers don't have to be edited at each update -- Keeps prior AppImage as `helium-browser.OldAppImage` which will be replaced at every update + - Presence of `/home//.apps/Helium` when updating | changeable in line 27 `INSTALL_PATH` + - Executable named `Helium.AppImage` | for convenience so launchers don't have to be edited at each update +- Keeps prior AppImage as `Helium.old` which will be replaced at every update +- Adds desktop launcher to `/home//.local/share/applications` ### Helium_Auto_Update.sh - Automatic updater script diff --git a/helium_helper.sh b/helium_helper.sh index 532ba53..9e9d41f 100755 --- a/helium_helper.sh +++ b/helium_helper.sh @@ -18,6 +18,7 @@ APP_NAME="Helium" APP_NAME_LONG="Helium Web Browser" SOURCE="GitHub" SCRIPT_NAME="$APP_NAME Helper Script" +SCRIPT_FILE_NAME="helium_helper.sh" SCRIPT_VERSION="0.5.1" DATE=$(date) @@ -337,16 +338,16 @@ compare_version() { help() { echo -e "\n${LCY}${SCRIPT_NAME}${CRS}\n" echo -e "$APP_NAME_LONG installer & updater script\n" - echo -e "Syntax: helium_helper.sh [ -i | -L | -u | -U | -r | -c | -s | -S | -h ]\n" + echo -e "Syntax: $SCRIPT_FILE_NAME [ -i | -L | -u | -r | -c | -s | -h ]\n" # | -U | -S echo -e "Options:\n" echo -e "\t-i\tDownload & install $APP_NAME_LONG from $SOURCE" echo -e "\t-L\tCreate desktop launcher" echo -e "\t-u\tDownload & update $APP_NAME_LONG from $SOURCE" - echo -e "\t-U\tEnable automatic updates on login ${RED}--> Not yet working${CRS}" + #echo -e "\t-U\tEnable automatic updates on login ${RED}--> Not yet working${CRS}" echo -e "\t-r\tRemove $APP_NAME_LONG" echo -e "\t-c\tCompare local to remote version" echo -e "\t-s\tShow script version" - echo -e "\t-S\tUpdate script ${RED}--> Not yet working${CRS}" + #echo -e "\t-S\tUpdate script ${RED}--> Not yet working${CRS}" echo -e "\t-h\tPrint this help page.\n" echo -e "Configured locations:\n" echo -e "\t${CYN}${INSTALL_PATH}${CRS}\t\tInstall location" diff --git a/todo.md b/todo.md index ba18d73..a4fb1dc 100644 --- a/todo.md +++ b/todo.md @@ -10,6 +10,7 @@ - Dependency check fixed - Launcher function works - Remover extended +- Readme updated ## Add