diff --git a/README.md b/README.md index 167ce5b..72a1e44 100644 --- a/README.md +++ b/README.md @@ -208,6 +208,7 @@ Gets the link that is being masked by a url shortner * To grab recommendations based on an item: tastedive.com * To determine masked link behind url shortner: x.datasig.io * To grab cheatsheets for commands and languages: cheat.sh +* To encode text into a qr code: qrenco.de #### Inspired by: Ruby-Scripts ## Installing @@ -216,7 +217,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.0``` +* Git checkout to the latest stable release ```git checkout v1.10.1``` * Run the guided install script with ```bash @@ -252,7 +253,7 @@ This will clone the repository and install the new versions of scripts that were * cd into the Bash-Snippets directory: ```cd Bash-Snippets``` -#### To uninstall all scripts +#### To go through a guided uninstall ```bash ./uninstall.sh ``` diff --git a/changelog.md b/changelog.md index d222676..d111e7a 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,23 @@ # Bash-Snippets Changelog +## Version 1.10.1 + + + + +### Changes +* Cloudup's -a option is now functional + +### Bugfixes +* Cloudup only needs one temporary copy of the repository +* Qrify had an issue where it couldn't handle more than one space +* Cloudup now retains git history when it backs up to bitbucket +* Fetch removed from qrify since it will not work + + +
+ ## Version 1.10.0
diff --git a/cheat/cheat b/cheat/cheat index d59cd00..d23dfcc 100755 --- a/cheat/cheat +++ b/cheat/cheat @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.0" +currentVersion="1.10.1" configuredClient="" search="0" insensitive="" diff --git a/cloudup/cloudup b/cloudup/cloudup index 6867ce3..3f1f8be 100755 --- a/cloudup/cloudup +++ b/cloudup/cloudup @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.0" +currentVersion="1.10.1" configuredClient="" private="0" all="0" diff --git a/crypt/crypt b/crypt/crypt index e62da69..647b69e 100755 --- a/crypt/crypt +++ b/crypt/crypt @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.0" +currentVersion="1.10.1" checkOpenSSL() diff --git a/currency/currency b/currency/currency index 8488c52..4c71db2 100755 --- a/currency/currency +++ b/currency/currency @@ -3,7 +3,7 @@ base="" exchangeTo="" -currentVersion="1.10.0" +currentVersion="1.10.1" 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 7eedf90..65be940 100755 --- a/geo/geo +++ b/geo/geo @@ -6,7 +6,7 @@ # Github: https://github.com/jakewmeyer # -currentVersion="1.10.0" +currentVersion="1.10.1" 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 ae21c35..72adff9 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.0" +currentVersion="1.10.1" if [[ $# == 0 ]]; then diff --git a/movies/movies b/movies/movies index 7050aab..61d013e 100755 --- a/movies/movies +++ b/movies/movies @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.0" +currentVersion="1.10.1" configuredClient="" configuredPython="" diff --git a/qrify/qrify b/qrify/qrify index 9591836..b635377 100755 --- a/qrify/qrify +++ b/qrify/qrify @@ -1,7 +1,7 @@ #!/bin/bash # Author: Linyos Torovoltos github.com/linyostorovovoltos -currentVersion="1.10.0" +currentVersion="1.10.1" multiline="0" @@ -62,7 +62,7 @@ httpGet() { case "$configuredClient" in curl) curl -A curl -s "$@";; - wget) wget --post-data "$@";; + wget) wget -qO- "$@";; esac } diff --git a/short/short b/short/short index 96b1659..808c153 100755 --- a/short/short +++ b/short/short @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.0" +currentVersion="1.10.1" configuredClient="" configuredPython="" diff --git a/stocks/stocks b/stocks/stocks index a3f7fe4..00440a1 100755 --- a/stocks/stocks +++ b/stocks/stocks @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.0" +currentVersion="1.10.1" configuredClient="" configuredPython="" diff --git a/taste/taste b/taste/taste index b4649c1..66bf722 100755 --- a/taste/taste +++ b/taste/taste @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.0" +currentVersion="1.10.1" configuredClient="" configuredPython="" source ~/.bash_profile ## allows grabbing enviornment variable diff --git a/weather/weather b/weather/weather index d7cfd4b..a7b54f4 100755 --- a/weather/weather +++ b/weather/weather @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.10.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 +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 LANG="${LANG:-en}" locale=$(echo $LANG | cut -c1-2) configuredClient="" diff --git a/ytview/ytview b/ytview/ytview index 67d254b..daa7cc6 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.0" +currentVersion="1.10.1" flag="" ## This function determines which http get tool the system has installed and returns an error if there isnt one