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 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 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>
## 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
```

View File

@ -2,6 +2,23 @@
# 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
</div>

View File

@ -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=""

View File

@ -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"

View File

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

View File

@ -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

View File

@ -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

View File

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

View File

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

View File

@ -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
}

View File

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

View File

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

View File

@ -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

View File

@ -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=""

View File

@ -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