diff --git a/README.md b/README.md index c80a68d..b4fac85 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,18 @@ If you want to bypass to guided input you can pass in 3 arguments and it will ru ex.```currency [baseCurrency] [exchangeToCurrency] [amountBeingExchanged]``` so a valid use case would be ```currency USD EUR 12.35``` +## Cloudup + +A tool that facilitates backing up github repositories to bitbucket + + +
+ + + +
+ + ## Encryption & Decryption @@ -188,7 +200,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.8.0``` +* Git checkout to the latest stable release ```git checkout v1.9.0``` * Run the guided install script with ```bash diff --git a/changelog.md b/changelog.md index f593002..84981e5 100644 --- a/changelog.md +++ b/changelog.md @@ -2,12 +2,25 @@ # Bash-Snippets Changelog +## Version 1.9.0 + + + +### Changes +* Added cloudup component + +### Bugfixes +* Fixing bug in ytview when search results are sparse + + +
+ ## Version 1.8.0
### Changes -* Added ytview componenet +* Added ytview component ### Bugfixes * Using ```$@``` instead of ```$1 $2 $3...``` in all applicable scripts diff --git a/cheat/cheat b/cheat/cheat index 9634453..8569e37 100755 --- a/cheat/cheat +++ b/cheat/cheat @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.0" +currentVersion="1.9.0" configuredClient="" search="0" insensitive="" diff --git a/cloudup/cloudup b/cloudup/cloudup index 182115e..6a38484 100755 --- a/cloudup/cloudup +++ b/cloudup/cloudup @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.0" +currentVersion="1.9.0" configuredClient="" private="0" all="0" diff --git a/crypt/crypt b/crypt/crypt index 411aa04..fff98ed 100755 --- a/crypt/crypt +++ b/crypt/crypt @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.0" +currentVersion="1.9.0" checkOpenSSL() diff --git a/currency/currency b/currency/currency index 55aad37..b9f80e0 100755 --- a/currency/currency +++ b/currency/currency @@ -3,7 +3,7 @@ base="" exchangeTo="" -currentVersion="1.8.0" +currentVersion="1.9.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 19bf434..bad5796 100755 --- a/geo/geo +++ b/geo/geo @@ -6,7 +6,7 @@ # Github: https://github.com/jakewmeyer # -currentVersion="1.8.0" +currentVersion="1.9.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 7eac7e8..b4955ce 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.0" +currentVersion="1.9.0" if [[ $# == 0 ]]; then diff --git a/movies/movies b/movies/movies index d3c72cc..42a038c 100755 --- a/movies/movies +++ b/movies/movies @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.0" +currentVersion="1.9.0" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/short/short b/short/short index 8d72eef..667ded9 100755 --- a/short/short +++ b/short/short @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.0" +currentVersion="1.9.0" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/stocks/stocks b/stocks/stocks index 965f657..7c9efd7 100755 --- a/stocks/stocks +++ b/stocks/stocks @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.0" +currentVersion="1.9.0" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/taste/taste b/taste/taste index e6f1e36..5f5e694 100755 --- a/taste/taste +++ b/taste/taste @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.0" +currentVersion="1.9.0" configuredClient="" source ~/.bashrc ## allows grabbing enviornment variable apiKey=$TASTE_API_KEY diff --git a/weather/weather b/weather/weather index 5971c3c..ff8403c 100755 --- a/weather/weather +++ b/weather/weather @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.8.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.9.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 a693913..4e43ace 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.8.0" +currentVersion="1.9.0" flag="" ## This function determines which http get tool the system has installed and returns an error if there isnt one