Skip to content
This repository has been archived by the owner on May 1, 2022. It is now read-only.

Commit

Permalink
change version number to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Itai-Nelken committed Jan 23, 2021
1 parent c3e35b4 commit 30cc6e7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/appinstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function error {
}

#check main.sh $APPVER for a list of everything to change
APPVER="v1.2"
APPVER="v1.2.1"

#variables
DIRECTORY="$HOME/Pi-Assistant"
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Name=Pi-Assistant
Exec="$HOME/Pi-Assistant/main.sh"
Icon="$HOME/Pi-Assistant/icons/64x64/logo-64.png"
Categories=Utility;
Comment="Pi-Assistant v1.2"" > ~/.local/share/applications/piassist.desktop
Comment="Pi-Assistant v1.2.1"" > ~/.local/share/applications/piassist.desktop
#copy menu shortcut to desktop
cp ~/.local/share/applications/piassist.desktop ~/Desktop/
sudo chmod +x ~/Desktop/piassist.desktop
Expand All @@ -52,7 +52,7 @@ cd ~/Pi-Assistant
#flags
if [[ $1 = "--version" ]]; then
clear
echo -e "$(tput bold)$(tput setaf 4)Pi-Assistant\nv1.2\nby Itai Nelken$(tput sgr 0)"
echo -e "$(tput bold)$(tput setaf 4)Pi-Assistant\nv1.2.1\nby Itai Nelken$(tput sgr 0)"
read -p "press [ENTER] to exit..."
exit
elif [[ $1 = "--secret" ]]; then
Expand Down
6 changes: 3 additions & 3 deletions main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ function error {
echo -e "\e[91m$1\e[39m"
}

#version variable (change --version text (main.sh and piassist/install.sh) and $APPVER in appinstaller.sh and desktop shortcut/install.sh and menu shortcut, piassist in updater.sh as well)
APPVER="v1.2"
#version variable (change --version text (main.sh and flag and piassist/install.sh) and $APPVER in appinstaller.sh and desktop shortcut/install.sh and menu shortcut, piassist in updater.sh as well)
APPVER="v1.2.1"

#check for updates variable
UPDATE=1
Expand All @@ -34,7 +34,7 @@ echo "$(tput setaf 2)$(tput bold)LOADING...$(tput sgr 0)"
#flags
if [[ $1 = "--version" ]]; then
clear
echo -e "$(tput bold)$(tput setaf 4)Pi-Assistant\nv1.2\nby Itai Nelken$(tput sgr 0)"
echo -e "$(tput bold)$(tput setaf 4)Pi-Assistant\nv1.2.1\nby Itai Nelken$(tput sgr 0)"
read -p "press [ENTER] to exit..."
exit
elif [[ $1 = "--secret" ]]; then
Expand Down
4 changes: 2 additions & 2 deletions updater.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Name=Pi-Assistant
Exec="$HOME/Pi-Assistant/main.sh"
Icon="$HOME/Pi-Assistant/icons/64x64/logo-64.png"
Categories=Utility;
Comment="Pi-Assistant v1.2"" > ~/.local/share/applications/piassist.desktop
Comment="Pi-Assistant v1.2.1"" > ~/.local/share/applications/piassist.desktop
cp ~/.local/share/applications/piassist.desktop ~/Desktop/piassist.desktop
sudo chmod +x ~/Desktop/piassist.desktop

Expand All @@ -94,7 +94,7 @@ cd ~/Pi-Assistant
#flags
if [[ $1 = "--version" ]]; then
clear
echo -e "$(tput bold)$(tput setaf 4)Pi-Assistant\nv1.2\nby Itai Nelken$(tput sgr 0)"
echo -e "$(tput bold)$(tput setaf 4)Pi-Assistant\nv1.2.1\nby Itai Nelken$(tput sgr 0)"
read -p "press [ENTER] to exit..."
exit
elif [[ $1 = "--secret" ]]; then
Expand Down

0 comments on commit 30cc6e7

Please sign in to comment.