Skip to content

Commit

Permalink
Merge branch 'release/0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinHanson committed Apr 13, 2016
2 parents 70c6c0e + 0db2cfc commit a4a26b6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log


## [0.1.2] - 2016-04-13

### Changed
* Minor fix for js/utils.py to increase max upload filesize from 1gb to 3gb (Kevin S. Hanson)



## [0.1.1] - 2016-04-07

### Changed
Expand Down
2 changes: 1 addition & 1 deletion app/redidropper/static/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var Utils = (function() {
simultaneousUploads: 4,
testChunks: false,
throttleProgressCallbacks: 1,
maxFileSize: 1 * 1024 * 1024 * 1024 // 1 GB max
maxFileSize: 3 * 1024 * 1024 * 1024 // 3 GB max
});
}

Expand Down

0 comments on commit a4a26b6

Please sign in to comment.