Updating to 1.17.2

This commit is contained in:
Alex Epstein 2017-08-01 20:34:24 -04:00
parent b883adb873
commit 99b5485f0b
22 changed files with 45 additions and 29 deletions

View File

@ -307,7 +307,7 @@ There is an AUR package for bash-snippets located [here](https://aur.archlinux.o
* Then cd into the cloned directory: ```cd Bash-Snippets```
* Git checkout to the latest stable release ```git checkout v1.17.1```
* Git checkout to the latest stable release ```git checkout v1.17.2```
* Run the guided install script with
```bash

View File

@ -1,7 +1,7 @@
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BASH\-SNIPPETS" "1" "July 2017" "" ""
.TH "BASH\-SNIPPETS" "1" "August 2017" "" ""
.
.SH "NAME"
\fBbash\-snippets\fR \- A collection of small bash scripts for heavy terminal users
@ -547,10 +547,10 @@ Description: Provides a 3 day forecast on your current location or a specified l
Usage: weather or weather [flag] or weather [country] or weather [city] [state]
.
.IP "\(bu" 4
weather [i] get weather in imperial units
weather [optionalLocation] [i][M] get weather in imperial units, optional M means windspeed in m/s
.
.IP "\(bu" 4
weather [m] get weather in metric units
weather [optionalLocation] [m][M] lowercase m gets weather in metric units, optional M means windspeed in m/s
.
.IP "\(bu" 4
weather [Moon] grabs the phase of the moon
@ -573,13 +573,16 @@ Examples:
weather
.
.IP "\(bu" 4
weather Paris m
.
.IP "\(bu" 4
weather Tokyo
.
.IP "\(bu" 4
weather Moon
.
.IP "\(bu" 4
weather m
weather mM
.
.IP "" 0
.

View File

@ -389,9 +389,9 @@ Description: Provides a 3 day forecast on your current location or a specified l
Usage: weather or weather [flag] or weather [country] or weather [city] [state]
* weather [i] get weather in imperial units
* weather [optionalLocation] [i][M] get weather in imperial units, optional M means windspeed in m/s
* weather [m] get weather in metric units
* weather [optionalLocation] [m][M] lowercase m gets weather in metric units, optional M means windspeed in m/s
* weather [Moon] grabs the phase of the moon
@ -405,11 +405,13 @@ Examples:
* weather
* weather Paris m
* weather Tokyo
* weather Moon
* weather m
* weather mM
### Ytview
Description: Search and play youtube videos right from the terminal.

View File

@ -2,6 +2,16 @@
# Bash-Snippets Changelog
## Version 1.17.2
</div>
### Changes
* Fixing where manpage is installed for linuxbrew
* Updating weather usage and manpage
<div align="center">
## Version 1.17.1
</div>

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.1"
currentVersion="1.17.2"
configuredClient=""
## rest of these variables are search flags
search="0"

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.1"
currentVersion="1.17.2"
configuredClient=""
private="0" ## state of private flag
all="0" ## state of all flag

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.1"
currentVersion="1.17.2"
state=""
configuredClient=""

View File

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

View File

@ -3,7 +3,7 @@
base=""
exchangeTo=""
currentVersion="1.17.1"
currentVersion="1.17.2"
configuredClient=""
currencyCodes=(AUD BGN BRL CAD CHF CNY CZK DKK
EUR GBP HKD HRK HUF IDR ILS INR

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.1"
currentVersion="1.17.2"
configuredClient=""
directionsFlag="0"
directionsMapFlag="0"

View File

@ -4,7 +4,7 @@
# Author: Jake Meyer
# Github: https://github.com/jakewmeyer
currentVersion="1.17.1"
currentVersion="1.17.2"
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 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.1"
currentVersion="1.17.2"
declare -a tools=(cheat cloudup crypt cryptocurrency currency geo movies newton qrify short siteciphers stocks taste todo weather ytview)
declare -a extraLinuxTools=(maps)
declare -a extraDarwinTools

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.1"
currentVersion="1.17.2"
configuredClient=""
configuredPython=""
detail=false

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.1"
currentVersion="1.17.2"
configuredClient=""
flagCount="0"
declare -a simpleOperations=(simplify factor derive integrate zeroes roots tangent area cos sin tan arccos arcsin arctan abs log)

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Linyos Torovoltos github.com/linyostorovovoltos
currentVersion="1.17.1"
currentVersion="1.17.2"
multiline="0" # flag that indicates multiline option

View File

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

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
DELAY=1
configuredClient=""
currentVersion="1.17.1"
currentVersion="1.17.2"
checkOpenSSL()
{

View File

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

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.1"
currentVersion="1.17.2"
configuredClient=""
configuredPython=""
source ~/.bash_profile 2> /dev/null ## allows grabbing enviornment variable

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
flag=""
currentVersion="1.17.1"
currentVersion="1.17.2"
configuredClient=""
## 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 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.17.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
currentVersion="1.17.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
LANG="${LANG:-en}"
locale=$(echo $LANG | cut -c1-2)
configuredClient=""
@ -106,17 +106,18 @@ Weather
Description: Provides a 3 day forecast on your current location or a specified location.
With no flags Weather will default to your current location.
Usage: weather or weather [flag] or weather [country] or weather [city] [state]
weather [i] get weather in imperial units
weather [m] get weather in metric units
weather [i][M] get weather in imperial units, optional M means windspeed in m/s
weather [m][M] get weather in metric units, optional M means windspeed in m/s
weather [Moon] grabs the phase of the moon
-u Update Bash-Snippet Tools
-h Show the help
-v Get the tool version
Examples:
weather
weather Paris m
weather Tokyo
weather Moon
weather m
weather mM
EOF
}

View File

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