diff --git a/README.md b/README.md index 8c00afe..4986a56 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,15 @@ Valid items are: shows, books, music, artists, movies, authors, games * After getting the API key run the following command: export TASTE_API_KEY="yourAPIKeyGoesHere" * If issues occur first try setting the API key without quotations marks +## Short + +Gets the link that is being masked by a url shortner + +
+ + + +
## API's Used * To get location based on ip address: ipinfo.io @@ -129,6 +138,7 @@ Valid items are: shows, books, music, artists, movies, authors, games * To grab the latest exchange rate between currencies: api.fixer.io * To grab information on movies: omdbapi.com * To grab recommendations based on an item: tastedive.com +* To determine masked link behind url shortner: x.datasig.io #### Inspired by: Ruby-Scripts ## Installing @@ -137,7 +147,7 @@ Valid items are: shows, books, music, artists, movies, authors, games * Then cd into the cloned directory: ```cd Bash-Snippets``` -* Git checkout to the latest stable release ```git checkout v1.4.0``` +* Git checkout to the latest stable release ```git checkout v1.5.0``` * Run the guided install script with ```bash diff --git a/changelog.md b/changelog.md index 4186b33..b2b7ca3 100644 --- a/changelog.md +++ b/changelog.md @@ -2,7 +2,20 @@ # Bash-Snippets Changelog +## Version 1.5.0 + + + +### Changes +* Added short component +### Bugfixes +* Sending errors in taste tool to /den/null +* Taste tool only has one unique youtube link not three + +
+ ## Version 1.4.0 +
# Changes diff --git a/crypt/crypt b/crypt/crypt index bab63b9..e645dd7 100755 --- a/crypt/crypt +++ b/crypt/crypt @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.4.0" +currentVersion="1.5.0" ## uses openssl aes 256 cbc encryption to encrypt file salting it with password designated by user encrypt() diff --git a/currency/currency b/currency/currency index f1634b6..4b4cd30 100755 --- a/currency/currency +++ b/currency/currency @@ -3,7 +3,7 @@ base="" exchangeTo="" -currentVersion="1.4.0" +currentVersion="1.5.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 b89d1bb..9fca85d 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.4.0" +currentVersion="1.5.0" if [[ $# == 0 ]]; then diff --git a/movies/movies b/movies/movies index b5dc24b..a18243f 100755 --- a/movies/movies +++ b/movies/movies @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.4.0" +currentVersion="1.5.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 fa05c3f..88da7ef 100755 --- a/short/short +++ b/short/short @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.4.0" +currentVersion="1.5.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.png b/short/short.png new file mode 100644 index 0000000..90994fe Binary files /dev/null and b/short/short.png differ diff --git a/stocks/stocks b/stocks/stocks index 524ad19..5ed4689 100755 --- a/stocks/stocks +++ b/stocks/stocks @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.4.0" +currentVersion="1.5.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 7fc0004..e4243db 100755 --- a/taste/taste +++ b/taste/taste @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.4.0" +currentVersion="1.5.0" configuredClient="" source ~/.bashrc ## allows grabbing enviornment variable apiKey=$TASTE_API_KEY diff --git a/weather/weather b/weather/weather index 57f3a59..7889a38 100755 --- a/weather/weather +++ b/weather/weather @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.4.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.5.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=""