Updating to 1.10.1

This commit is contained in:
Alex Epstein 2017-07-05 20:19:12 -04:00
parent 7e5b603159
commit df7faba306
15 changed files with 34 additions and 16 deletions

View File

@ -208,6 +208,7 @@ Gets the link that is being masked by a url shortner
* To grab recommendations based on an item: <a href="https://tastedive.com">tastedive.com</a> * To grab recommendations based on an item: <a href="https://tastedive.com">tastedive.com</a>
* To determine masked link behind url shortner: <a href="http://x.datasig.io">x.datasig.io</a> * To determine masked link behind url shortner: <a href="http://x.datasig.io">x.datasig.io</a>
* To grab cheatsheets for commands and languages: <a href="http://cheat.sh/">cheat.sh</a> * To grab cheatsheets for commands and languages: <a href="http://cheat.sh/">cheat.sh</a>
* To encode text into a qr code: <a href="qrenco.de">qrenco.de</a>
#### Inspired by: <a href="https://github.com/jakewmeyer/Ruby-Scripts">Ruby-Scripts</a> #### Inspired by: <a href="https://github.com/jakewmeyer/Ruby-Scripts">Ruby-Scripts</a>
## Installing ## 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``` * 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 * Run the guided install script with
```bash ```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``` * cd into the Bash-Snippets directory: ```cd Bash-Snippets```
#### To uninstall all scripts #### To go through a guided uninstall
```bash ```bash
./uninstall.sh ./uninstall.sh
``` ```

View File

@ -2,6 +2,23 @@
# Bash-Snippets Changelog # Bash-Snippets Changelog
## Version 1.10.1
</div>
### 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
<div align="center">
## Version 1.10.0 ## Version 1.10.0
</div> </div>

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.10.0" currentVersion="1.10.1"
configuredClient="" configuredClient=""
search="0" search="0"
insensitive="" insensitive=""

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.10.0" currentVersion="1.10.1"
configuredClient="" configuredClient=""
private="0" private="0"
all="0" all="0"

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.10.0" currentVersion="1.10.1"
checkOpenSSL() checkOpenSSL()

View File

@ -3,7 +3,7 @@
base="" base=""
exchangeTo="" exchangeTo=""
currentVersion="1.10.0" currentVersion="1.10.1"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -6,7 +6,7 @@
# Github: https://github.com/jakewmeyer # Github: https://github.com/jakewmeyer
# #
currentVersion="1.10.0" currentVersion="1.10.1"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.10.0" currentVersion="1.10.1"
if [[ $# == 0 ]]; then if [[ $# == 0 ]]; then

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.10.0" currentVersion="1.10.1"
configuredClient="" configuredClient=""
configuredPython="" configuredPython=""

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Linyos Torovoltos github.com/linyostorovovoltos # Author: Linyos Torovoltos github.com/linyostorovovoltos
currentVersion="1.10.0" currentVersion="1.10.1"
multiline="0" multiline="0"
@ -62,7 +62,7 @@ httpGet()
{ {
case "$configuredClient" in case "$configuredClient" in
curl) curl -A curl -s "$@";; curl) curl -A curl -s "$@";;
wget) wget --post-data "$@";; wget) wget -qO- "$@";;
esac esac
} }

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.10.0" currentVersion="1.10.1"
configuredClient="" configuredClient=""
configuredPython="" configuredPython=""

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.10.0" currentVersion="1.10.1"
configuredClient="" configuredClient=""
configuredPython="" configuredPython=""

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.10.0" currentVersion="1.10.1"
configuredClient="" configuredClient=""
configuredPython="" configuredPython=""
source ~/.bash_profile ## allows grabbing enviornment variable source ~/.bash_profile ## allows grabbing enviornment variable

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # 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}" LANG="${LANG:-en}"
locale=$(echo $LANG | cut -c1-2) locale=$(echo $LANG | cut -c1-2)
configuredClient="" configuredClient=""

View File

@ -6,7 +6,7 @@ if [[ -d $HOME/.cache/ytview ]];then rm -rf $HOME/.cache/ytview/ ;fi
player="" player=""
configuredClient="" configuredClient=""
currentVersion="1.10.0" currentVersion="1.10.1"
flag="" flag=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one