Skip to content

Releases: danialfarid/ng-file-upload

Version 1.1.1

28 Oct 22:53
Compare
Choose a tag to compare

Fixed progress bar to work with the latest angular 1.2.0-rc.3.
Added fileFormDataName to set the name of the Content-Disposition formData.
You can now upload the same file twice: #27

Version 1.1.0

28 Oct 17:36
Compare
Choose a tag to compare

New in version 1.1.0:

upload is now done with regular angular $http.post for HTML5 browsers so all angular $http features are available.
Added $upload as an angular service.
All the code for non HTML5 browsers and upload progress are moved to a separate shim file, the actual directive just uses html5 code. So if you only suppost HTML5 browsers you don't need to load shim js file.
angular-file-upload-shim.js needs to be loaded before angular.js if you need to support upload progress or browsers not supporting HTML5 FormData.
progress event is part of the upload config params instead of promise call.

Version 1.0.2

16 Oct 17:53
Compare
Choose a tag to compare

removed jquery dependency, added FileAPI.jsPath param to set the js load path for FileAPI

Version 1.0.1

16 Oct 16:01
Compare
Choose a tag to compare

Added fileFormDataName to config to be able to set the Content-Disposition formData name for the uploaded file

version 1.0.0

15 Oct 22:36
Compare
Choose a tag to compare

Added file upload progress and drag&drop

0.1.4

09 Sep 19:48
Compare
Choose a tag to compare
Merge branch 'master' of https://github.com/danialfarid/angular-file-…

…upload