Skip to content

Commit 36b84c9

Browse files
committed
Upgrading version to 3.4.1 (Fixed Firefox progress update problems and travis.)
1 parent 9d1dacc commit 36b84c9

9 files changed

+9
-9
lines changed

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dropzone",
33
"repo": "enyo/dropzone",
4-
"version": "3.4.1-dev",
4+
"version": "3.4.1",
55
"description": "Handles drag and drop of files for you.",
66
"scripts": [ "index.js", "lib/dropzone.js" ],
77
"styles": [ "downloads/css/basic.css" ],

downloads/dropzone-amd-module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ Emitter.prototype.hasListeners = function(event){
955955

956956
})(Em);
957957

958-
Dropzone.version = "3.4.1-dev";
958+
Dropzone.version = "3.4.1";
959959

960960
Dropzone.options = {};
961961

downloads/dropzone-amd-module.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

downloads/dropzone.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,7 @@ require.register("dropzone/lib/dropzone.js", function(exports, require, module){
11531153

11541154
})(Em);
11551155

1156-
Dropzone.version = "3.4.1-dev";
1156+
Dropzone.version = "3.4.1";
11571157

11581158
Dropzone.options = {};
11591159

downloads/dropzone.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/dropzone.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@
794794

795795
})(Em);
796796

797-
Dropzone.version = "3.4.1-dev";
797+
Dropzone.version = "3.4.1";
798798

799799
Dropzone.options = {};
800800

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dropzone",
3-
"version": "3.4.1-dev",
3+
"version": "3.4.1",
44
"description": "Handles drag and drop of files for you.",
55
"keywords": [ "dragndrop", "drag and drop", "file upload", "upload" ],
66
"homepage": "http://www.dropzonejs.com",

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img alt="Dropzone.js" src="http://www.dropzonejs.com/images/logo.png" />
33
</h1>
44

5-
*Version 3.4.1-dev*
5+
*Version 3.4.1*
66

77
Dropzone.js is a light weight JavaScript library that turns an HTML element into a dropzone.
88
This means that a user can drag and drop a file onto it, and the file gets uploaded to the server via AJAX.

src/dropzone.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ class Dropzone extends Em
825825

826826

827827

828-
Dropzone.version = "3.4.1-dev"
828+
Dropzone.version = "3.4.1"
829829

830830

831831
# This is a map of options for your different dropzones. Add configurations

0 commit comments

Comments
 (0)