diff --git a/README.md b/README.md index 4b53a92..14638ce 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ Gets the link that is being masked by a url shortner * Then cd into the cloned directory: ```cd Bash-Snippets``` -* Git checkout to the latest stable release ```git checkout v1.10.1``` +* Git checkout to the latest stable release ```git checkout v1.11.0``` * Run the guided install script with ```bash diff --git a/changelog.md b/changelog.md index d111e7a..e0b1086 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,15 @@ # Bash-Snippets Changelog +## Version 1.11.0 + + + +### Changes +* Adding manpage, view it with ```man bash-snippets``` + +
+ ## Version 1.10.1
diff --git a/cheat/cheat b/cheat/cheat index 5e696db..698d3ea 100755 --- a/cheat/cheat +++ b/cheat/cheat @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" +currentVersion="1.11.0" configuredClient="" ## rest of these variables are search flags search="0" diff --git a/cloudup/cloudup b/cloudup/cloudup index c92197b..e814132 100755 --- a/cloudup/cloudup +++ b/cloudup/cloudup @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" +currentVersion="1.11.0" configuredClient="" private="0" ## state of private flag all="0" ## state of all flag diff --git a/crypt/crypt b/crypt/crypt index 59ecfc8..6c76cf3 100755 --- a/crypt/crypt +++ b/crypt/crypt @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" +currentVersion="1.11.0" state="" checkOpenSSL() diff --git a/currency/currency b/currency/currency index 1a3a83b..adbe27c 100755 --- a/currency/currency +++ b/currency/currency @@ -3,7 +3,7 @@ base="" exchangeTo="" -currentVersion="1.10.1" +currentVersion="1.11.0" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/geo/geo b/geo/geo index 15af53c..9c47146 100755 --- a/geo/geo +++ b/geo/geo @@ -6,7 +6,7 @@ # Github: https://github.com/jakewmeyer # -currentVersion="1.10.1" +currentVersion="1.11.0" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/install.sh b/install.sh index 231f90f..434025f 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" +currentVersion="1.11.0" declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify) askInstall() diff --git a/movies/movies b/movies/movies index 9b33083..7021dfb 100755 --- a/movies/movies +++ b/movies/movies @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" +currentVersion="1.11.0" configuredClient="" configuredPython="" diff --git a/qrify/qrify b/qrify/qrify index 01df2e8..7ae34bf 100755 --- a/qrify/qrify +++ b/qrify/qrify @@ -1,7 +1,7 @@ #!/bin/bash # Author: Linyos Torovoltos github.com/linyostorovovoltos -currentVersion="1.10.1" +currentVersion="1.11.0" multiline="0" # flag that indicates multiline option diff --git a/short/short b/short/short index b4a4a61..20d2561 100755 --- a/short/short +++ b/short/short @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" +currentVersion="1.11.0" configuredClient="" configuredPython="" diff --git a/stocks/stocks b/stocks/stocks index 4991142..8f8c43a 100755 --- a/stocks/stocks +++ b/stocks/stocks @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" +currentVersion="1.11.0" configuredClient="" configuredPython="" diff --git a/taste/taste b/taste/taste index 48c06d4..c64e0b5 100755 --- a/taste/taste +++ b/taste/taste @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" +currentVersion="1.11.0" configuredClient="" configuredPython="" source ~/.bash_profile ## allows grabbing enviornment variable diff --git a/weather/weather b/weather/weather index 9097613..742d514 100755 --- a/weather/weather +++ b/weather/weather @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.1" #This version variable should not have a v but should contain all other characters ex Github release tag is v1.2.4 currentVersion is 1.2.4 +currentVersion="1.11.0" #This version variable should not have a v but should contain all other characters ex Github release tag is v1.2.4 currentVersion is 1.2.4 LANG="${LANG:-en}" locale=$(echo $LANG | cut -c1-2) configuredClient="" diff --git a/ytview/ytview b/ytview/ytview index 048dfae..e939982 100755 --- a/ytview/ytview +++ b/ytview/ytview @@ -6,7 +6,7 @@ if [[ -d $HOME/.cache/ytview ]];then rm -rf $HOME/.cache/ytview/ ;fi player="" configuredClient="" -currentVersion="1.10.1" +currentVersion="1.11.0" flag="" ## This function determines which http get tool the system has installed and returns an error if there isnt one