Updating to 1.11.1

This commit is contained in:
Alex Epstein 2017-07-13 20:46:05 -04:00
parent f54b1a2ac5
commit f91f6ce33f
18 changed files with 37 additions and 37 deletions

View File

@ -234,7 +234,7 @@ brew install chainsawbaby/formula/bash-snippets
* 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.11.0``` * Git checkout to the latest stable release ```git checkout v1.11.1```
* Run the guided install script with * Run the guided install script with
```bash ```bash

View File

@ -482,26 +482,16 @@ ytview \-c Numberphile
.SH "Updating" .SH "Updating"
With any of the installed tools you can automate the update by running it with the \-u option or passing in update as the arguments With any of the installed tools you can automate the update by running it with the \-u option or passing in update as the arguments
. .
.IP "" 4 .IP "\(bu" 4
. \fBstocks update\fR
.nf
* `stocks update`
.
.fi
. .
.IP "" 0 .IP "" 0
. .
.P .P
or or
. .
.IP "" 4 .IP "\(bu" 4
. \fBstocks \-u\fR
.nf
* `stocks \-u`
.
.fi
. .
.IP "" 0 .IP "" 0
. .
@ -520,13 +510,13 @@ cd into the Bash\-Snippets directory: \fBcd Bash\-Snippets\fR
To go through a guided uninstall To go through a guided uninstall
* `\./uninstall\.sh` * `\./uninstall\.sh`
To uninstall individual scripts To uninstall individual scripts
* `cd weather` * `cd weather`
* `\./uninstall\.sh` * `\./uninstall\.sh`
. .
.fi .fi
. .

View File

@ -310,11 +310,11 @@ Examples:
With any of the installed tools you can automate the update by running it with the -u option or passing in update as the arguments With any of the installed tools you can automate the update by running it with the -u option or passing in update as the arguments
* `stocks update` * `stocks update`
or or
* `stocks -u` * `stocks -u`
This will clone the repository and install the new versions of scripts that were installed, if you didn't install a certain tool this script will not install the new version of that tool. This will clone the repository and install the new versions of scripts that were installed, if you didn't install a certain tool this script will not install the new version of that tool.
@ -326,13 +326,13 @@ Examples:
To go through a guided uninstall To go through a guided uninstall
* `./uninstall.sh` * `./uninstall.sh`
To uninstall individual scripts To uninstall individual scripts
* `cd weather` * `cd weather`
* `./uninstall.sh` * `./uninstall.sh`
## AUTHOR ## AUTHOR

View File

@ -2,6 +2,16 @@
# Bash-Snippets Changelog # Bash-Snippets Changelog
## Version 1.11.1
</div>
### Bugfixes
* Fixed issue in ytview where it was playing wrong video
* Fixed wget check in qrify
<div align="center">
## Version 1.11.0 ## Version 1.11.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.11.0" currentVersion="1.11.1"
configuredClient="" configuredClient=""
## rest of these variables are search flags ## rest of these variables are search flags
search="0" search="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.11.0" currentVersion="1.11.1"
configuredClient="" configuredClient=""
private="0" ## state of private flag private="0" ## state of private flag
all="0" ## state of all flag all="0" ## state of all flag

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.11.0" currentVersion="1.11.1"
state="" state=""
checkOpenSSL() checkOpenSSL()

View File

@ -3,7 +3,7 @@
base="" base=""
exchangeTo="" exchangeTo=""
currentVersion="1.11.0" currentVersion="1.11.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,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.11.0" currentVersion="1.11.1"
configuredClient="" configuredClient=""
directionsFlag="0" directionsFlag="0"
directionsMapFlag="0" directionsMapFlag="0"

View File

@ -6,7 +6,7 @@
# Github: https://github.com/jakewmeyer # Github: https://github.com/jakewmeyer
# #
currentVersion="1.11.0" currentVersion="1.11.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.11.0" currentVersion="1.11.1"
declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify) declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify)
askInstall() askInstall()

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.11.0" currentVersion="1.11.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.11.0" currentVersion="1.11.1"
multiline="0" # flag that indicates multiline option multiline="0" # flag that indicates multiline option

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.11.0" currentVersion="1.11.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.11.0" currentVersion="1.11.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.11.0" currentVersion="1.11.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.11.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.11.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.11.0" currentVersion="1.11.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