diff --git a/README.md b/README.md index dbc9188..8d5d56d 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ brew install chainsawbaby/formula/bash-snippets * Then cd into the cloned directory: ```cd Bash-Snippets``` -* Git checkout to the latest stable release ```git checkout v1.11.1``` +* Git checkout to the latest stable release ```git checkout v1.11.2``` * Run the guided install script with ```bash diff --git a/changelog.md b/changelog.md index 6037ac7..4544e37 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,21 @@ +### Changes +* Now supporting the use of proxies +* Typo fixes +* Adding IMDB rating to movies tool + +### Bugfixes +* Suppressing ```source ~/.bash_profile``` error + + +
+ +## Version 1.11.1 + +
+ ### Bugfixes * Fixed issue in ytview where it was playing wrong video * Fixed wget check in qrify diff --git a/cheat/cheat b/cheat/cheat index cd0a351..8e6e0bf 100755 --- a/cheat/cheat +++ b/cheat/cheat @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" configuredClient="" ## rest of these variables are search flags search="0" diff --git a/cloudup/cloudup b/cloudup/cloudup index 613dc7b..39b3ef3 100755 --- a/cloudup/cloudup +++ b/cloudup/cloudup @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" configuredClient="" private="0" ## state of private flag all="0" ## state of all flag diff --git a/crypt/crypt b/crypt/crypt index f3db597..44fa78e 100755 --- a/crypt/crypt +++ b/crypt/crypt @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" state="" checkOpenSSL() diff --git a/currency/currency b/currency/currency index 5888b40..fc1e470 100755 --- a/currency/currency +++ b/currency/currency @@ -3,7 +3,7 @@ base="" exchangeTo="" -currentVersion="1.11.1" +currentVersion="1.11.2" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/extras/Linux/maps/maps b/extras/Linux/maps/maps index 02d32eb..3439a92 100755 --- a/extras/Linux/maps/maps +++ b/extras/Linux/maps/maps @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" configuredClient="" directionsFlag="0" directionsMapFlag="0" diff --git a/geo/geo b/geo/geo index 386063b..c014dd2 100755 --- a/geo/geo +++ b/geo/geo @@ -6,7 +6,7 @@ # Github: https://github.com/jakewmeyer # -currentVersion="1.11.1" +currentVersion="1.11.2" 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 f21c3e6..85622da 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" 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 155206a..f980926 100755 --- a/movies/movies +++ b/movies/movies @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" configuredClient="" configuredPython="" diff --git a/qrify/qrify b/qrify/qrify index aed8e17..2fda732 100755 --- a/qrify/qrify +++ b/qrify/qrify @@ -1,7 +1,7 @@ #!/bin/bash # Author: Linyos Torovoltos github.com/linyostorovovoltos -currentVersion="1.11.1" +currentVersion="1.11.2" multiline="0" # flag that indicates multiline option diff --git a/short/short b/short/short index 7139df0..0c38f3f 100755 --- a/short/short +++ b/short/short @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" configuredClient="" configuredPython="" diff --git a/stocks/stocks b/stocks/stocks index f1d8c05..c27c229 100755 --- a/stocks/stocks +++ b/stocks/stocks @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" configuredClient="" configuredPython="" diff --git a/taste/taste b/taste/taste index 468fb7f..8edbf46 100755 --- a/taste/taste +++ b/taste/taste @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.1" +currentVersion="1.11.2" configuredClient="" configuredPython="" source ~/.bash_profile 2> /dev/null ## allows grabbing enviornment variable diff --git a/weather/weather b/weather/weather index f1c83e7..1ee5d54 100755 --- a/weather/weather +++ b/weather/weather @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.11.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.2" #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 88e01cb..d8c4f2a 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.11.1" +currentVersion="1.11.2" flag="" ## This function determines which http get tool the system has installed and returns an error if there isnt one