Updating to 1.2.0

This commit is contained in:
Alex Epstein 2017-06-29 12:24:19 -04:00
parent 5b8479552b
commit b191b731f4
7 changed files with 7 additions and 7 deletions

View File

@ -104,7 +104,7 @@ Quick search that grabs relevant information about a movie
* Then cd into the cloned directory: ```cd Bash-Snippets```
* Git checkout to the latest stable release ```git checkout v1.1.1```
* Git checkout to the latest stable release ```git checkout v1.2.0```
* Run the guided install script with
```bash

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.1.1"
currentVersion="1.2.0"
## uses openssl aes 256 cbc encryption to encrypt file salting it with password designated by user
encrypt()

View File

@ -3,7 +3,7 @@
base=""
exchangeTo=""
currentVersion="1.1.1"
currentVersion="1.2.0"
## Grabs the base currency from the user and validates it with all the possible currency
## types available on the API and guides user through input (doesnt take in arguments)
getBase()

View File

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

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.1.1"
currentVersion="1.2.0"
checkInternet()
{

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.1.1"
currentVersion="1.2.0"
checkInternet()
{

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.1.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.2.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
locale=$(echo $LANG | cut -c1-2)
getIPWeather()