diff --git a/README.md b/README.md index 4822e6d..f7f8669 100755 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ The following commands are supported ## Removal commands - apt remove - apt purge -- apt-get autoremove +- apt autoremove - apt-get clean ## Misc diff --git a/src/interaptive.sh b/src/interaptive.sh index 8e9774a..bcd8920 100755 --- a/src/interaptive.sh +++ b/src/interaptive.sh @@ -5,8 +5,8 @@ # (inspired by yaourt-gui) # Author :yafp # URL :https://github.com/yafp/interAPTive/ -# Date :20160615 -# Version :0.6 +# Date :20161212 +# Version :0.9 # Usage :bash interaptive.sh (non-installed) # :interaptive (installed via Makefile) # Notes :None @@ -33,7 +33,7 @@ function initAppBasics() { readonly appAuthor="yafp" readonly appName="interAPTive" readonly appDescription="An interactive commandline interface for APT" - readonly appVersion="0.6.20160615.01" # 0.x.YYMMDDDD + readonly appVersion="0.9.20161212.01" # 0.x.YYMMDDDD readonly appTagline=" $appName - $appDescription" readonly appPathFull="/usr/bin/interaptive" # if 'installed' via makefile readonly appLicense="GPL3" @@ -410,7 +410,7 @@ function printCommandList { printf " %sRemoval%s\n" "${bold}" "${normal}" printf " [41] Remove packages by name\t\t\t(apt remove)\n" printf " [42] Purge packages by name\t\t\t(apt purge)\n" # Issue 8 - printf " [43] Remove unneeded packages\t\t\t(apt-get autoremove)\n" + printf " [43] Remove unneeded packages\t\t\t(apt autoremove)\n" printf " [44] Remove all stored archives from cache\t(apt-get clean)\n\n" # misc @@ -511,7 +511,7 @@ function printCoreUI { executeAPTCommand "apt purge $search" "sudo" ;; 43) # autoremove - executeAPTCommand "apt-get autoremove" "sudo" + executeAPTCommand "apt autoremove" "sudo" ;; 44) # clean executeAPTCommand "apt-get clean" "sudo" diff --git a/version b/version index b938b79..cd74318 100755 --- a/version +++ b/version @@ -1 +1 @@ -0.6.20160615.01 +0.9.20161212.01