diff options
-rw-r--r-- | CHANGELOG | 6 | ||||
-rw-r--r-- | README | 1 | ||||
-rwxr-xr-x | hib-dlagent | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Version 0.5 - 2014/01/12 + * Fixed handling of passwords containing special characters + * Added interactive password prompting when password not provided as argument + * No longer pass password to curl on command line, to prevent it from being + visible in `ps'. + Version 0.4 - 2013/10/19 * Fixed URL scraping due to website change @@ -1,6 +1,7 @@ Tool to download Humble Indie Bundle binaries by file name Author: Eric Anderson <ejona86@gmail.com> Contributor: Thomas Riccardi <riccardi.thomas@gmail.com> +Contributor: Devin J. Pohly <djpohly@gmail.com> Description =========== diff --git a/hib-dlagent b/hib-dlagent index 9e61ed2..fe09339 100755 --- a/hib-dlagent +++ b/hib-dlagent @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -VERSION=0.4 +VERSION=0.5 LOGIN_PAGE=https://www.humblebundle.com/login HOME_PAGE=https://www.humblebundle.com/home COOKIE_JAR= |