Updating to 1.8.0

This commit is contained in:
Alex Epstein 2017-07-03 20:22:07 -04:00
parent e618777372
commit 0b38f94cae
14 changed files with 42 additions and 14 deletions

View File

@ -38,7 +38,20 @@ Also can show the current moon phase
</div>
## Youtube-Viewer
Provides a way to watch youtube videos from the terminal.
You can use ```ytview -c [channel name]``` to see recent videos by that artist.
You can use ```youtubeviewer -s '[videoToSearch]'``` to search for videos.
<div align="center">
<img height="75%" width="75%" src="https://github.com/alexanderepstein/Bash-Snippets/blob/master/ytview/ytview.png?raw=true">
</div>
## Stocks
@ -174,7 +187,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.7.0```
* Git checkout to the latest stable release ```git checkout v1.8.0```
* Run the guided install script with
```bash

View File

@ -2,6 +2,21 @@
# Bash-Snippets Changelog
## Version 1.8.0
</div>
### Changes
* Added ytview componenet
### Bugfixes
* Using ```$@``` instead of ```$1 $2 $3...``` in all applicable scripts
* Make call to python 2 explicit in all applicable scripts
* Hiding the cheatsheet api help page from the user
<div align="center">
## Version 1.7.0
</div>

View File

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

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.7.0"
currentVersion="1.8.0"
configuredClient=""
private="0"
all="0"
@ -164,7 +164,7 @@ cloneGitHubRepo()
getGithubRepoNames()
{
response=$(httpGet "https://api.github.com/users/$ghUsername/repos?sort=updated&per_page=100")
}
usage()

View File

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

View File

@ -3,7 +3,7 @@
base=""
exchangeTo=""
currentVersion="1.7.0"
currentVersion="1.8.0"
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.7.0"
currentVersion="1.8.0"
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.7.0"
currentVersion="1.8.0"
if [[ $# == 0 ]]; then

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.7.0"
currentVersion="1.8.0"
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 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.7.0"
currentVersion="1.8.0"
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 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.7.0"
currentVersion="1.8.0"
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 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.7.0"
currentVersion="1.8.0"
configuredClient=""
source ~/.bashrc ## allows grabbing enviornment variable
apiKey=$TASTE_API_KEY

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.7.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.8.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=""

View File

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