mirror of
https://github.com/alexanderepstein/Bash-Snippets
synced 2018-11-08 02:59:35 +01:00
Updating to 1.16.0
This commit is contained in:
parent
ee4e527daa
commit
621274906a
20 changed files with 30 additions and 19 deletions
|
@ -296,7 +296,7 @@ sparrow plg install [tool]
|
|||
|
||||
* Then cd into the cloned directory: ```cd Bash-Snippets```
|
||||
|
||||
* Git checkout to the latest stable release ```git checkout v1.15.2```
|
||||
* Git checkout to the latest stable release ```git checkout v1.16.0```
|
||||
|
||||
* Run the guided install script with
|
||||
```bash
|
||||
|
|
11
changelog.md
11
changelog.md
|
@ -2,6 +2,17 @@
|
|||
|
||||
# Bash-Snippets Changelog
|
||||
|
||||
## Version 1.16.0
|
||||
|
||||
</div>
|
||||
|
||||
### Changes
|
||||
* Added cryptocurrency component
|
||||
* Added newton component
|
||||
* Changed WAN Call in geo
|
||||
|
||||
<div align="center">
|
||||
|
||||
## Version 1.15.2
|
||||
|
||||
</div>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
## rest of these variables are search flags
|
||||
search="0"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
private="0" ## state of private flag
|
||||
all="0" ## state of all flag
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
state=""
|
||||
configuredClient=""
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
base=""
|
||||
exchangeTo=""
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
|
||||
## This function determines which http get tool the system has installed and returns an error if there isnt one
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
base=""
|
||||
exchangeTo=""
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
|
||||
## This function determines which http get tool the system has installed and returns an error if there isnt one
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
directionsFlag="0"
|
||||
directionsMapFlag="0"
|
||||
|
|
2
geo/geo
2
geo/geo
|
@ -4,7 +4,7 @@
|
|||
# Author: Jake Meyer
|
||||
# Github: https://github.com/jakewmeyer
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
|
||||
## This function determines which http get tool the system has installed and returns an error if there isnt one
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
declare -a tools=(currency cryptocurrency stocks weather newton crypt movies taste short geo cheat ytview cloudup qrify siteciphers todo)
|
||||
declare -a extraLinuxTools=(maps)
|
||||
declare -a extraDarwinTools
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
configuredPython=""
|
||||
detail=false
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
declare -a simpleOperations=(simplify factor derive integrate zeroes roots tangent area cos sin tan arccos arcsin arctan abs log)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Linyos Torovoltos github.com/linyostorovovoltos
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
multiline="0" # flag that indicates multiline option
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
configuredPython=""
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
DELAY=1
|
||||
configuredClient=""
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
|
||||
checkOpenSSL()
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
configuredPython=""
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
configuredPython=""
|
||||
source ~/.bash_profile 2> /dev/null ## allows grabbing enviornment variable
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
flag=""
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
configuredClient=""
|
||||
|
||||
## This function determines which http get tool the system has installed and returns an error if there isnt one
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.15.2" #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.16.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=""
|
||||
|
|
|
@ -6,7 +6,7 @@ if [[ -d $HOME/.cache/ytview ]]; then rm -rf $HOME/.cache/ytview/; fi
|
|||
|
||||
player=""
|
||||
configuredClient=""
|
||||
currentVersion="1.15.2"
|
||||
currentVersion="1.16.0"
|
||||
flag=""
|
||||
|
||||
## This function determines which http get tool the system has installed and returns an error if there isnt one
|
||||
|
|
Loading…
Reference in a new issue