Updating to 1.3.1

This commit is contained in:
Alex Epstein 2017-06-29 21:48:35 -04:00
parent ee18b97265
commit d6bfb8032a
8 changed files with 17 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.3.0```
* Git checkout to the latest stable release ```git checkout v1.3.1```
* Run the guided install script with
```bash

View File

@ -2,6 +2,16 @@
# Bash-Snippets Changelog
## Version 1.3.1
</div>
### Bugfixes
* Fixing bug in currency where invalid exchangeTo wasn't handled correctly
<div align="center">
## Version 1.3.0
</div>

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.3.0"
currentVersion="1.3.1"
## 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.3.0"
currentVersion="1.3.1"
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.3.0"
currentVersion="1.3.1"
if [[ $# == 0 ]]; then

View File

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