Skip to content

Commit abcd5e1

Browse files
committed
v2.0.6
1 parent 7bda221 commit abcd5e1

File tree

8 files changed

+20
-11
lines changed

8 files changed

+20
-11
lines changed

Gruntfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ module.exports = function (grunt) {
175175
grunt.loadNpmTasks('grunt-contrib-compress');
176176
grunt.loadNpmTasks('grunt-mxmlc');
177177
grunt.loadNpmTasks('grunt-curl');
178+
178179
// Load custom QUnit task, based on grunt-contrib-qunit, but support "files" option.
179180
grunt.loadTasks('./tests/grunt-task/');
180181
grunt.loadTasks('./custom-tasks/');
@@ -185,7 +186,9 @@ module.exports = function (grunt) {
185186
grunt.task.run('curl');
186187
}
187188
});
189+
188190
grunt.registerTask('tests', ['jshint', 'concat', 'connect:server','prepare-test-files', 'qunit']);
189-
grunt.registerTask('build', ['version', 'concat', 'uglify', 'mxmlc']);
191+
grunt.registerTask('build', ['version', 'concat', 'uglify']);
192+
grunt.registerTask('build-all', ['build', 'mxmlc']);
190193
grunt.registerTask('default', ['tests', 'build']);
191194
};

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1387,6 +1387,12 @@ Button like link.
13871387
<a name="Changelog"></a>
13881388
## Changelog
13891389
1390+
### 2.0.6
1391+
<ul>
1392+
<li>#240: Fixed `FileAPI.event.dnd.off`</li>
1393+
</ul>
1394+
1395+
13901396
### 2.0.5
13911397
<ul>
13921398
<li>+ #228: check callbacks with regexp</li>

dist/FileAPI.html5.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! FileAPI 2.0.5 - BSD | git://github.com/mailru/FileAPI.git
1+
/*! FileAPI 2.0.6 - BSD | git://github.com/mailru/FileAPI.git
22
* FileAPI — a set of javascript tools for working with files. Multiupload, drag'n'drop and chunked file upload. Images: crop, resize and auto orientation by EXIF.
33
*/
44

@@ -278,7 +278,7 @@
278278
* FileAPI (core object)
279279
*/
280280
api = {
281-
version: '2.0.5',
281+
version: '2.0.6',
282282

283283
cors: false,
284284
html5: true,

dist/FileAPI.html5.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/FileAPI.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! FileAPI 2.0.5 - BSD | git://github.com/mailru/FileAPI.git
1+
/*! FileAPI 2.0.6 - BSD | git://github.com/mailru/FileAPI.git
22
* FileAPI — a set of javascript tools for working with files. Multiupload, drag'n'drop and chunked file upload. Images: crop, resize and auto orientation by EXIF.
33
*/
44

@@ -278,7 +278,7 @@
278278
* FileAPI (core object)
279279
*/
280280
api = {
281-
version: '2.0.5',
281+
version: '2.0.6',
282282

283283
cors: false,
284284
html5: true,

dist/FileAPI.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/FileAPI.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
* FileAPI (core object)
185185
*/
186186
api = {
187-
version: '2.0.5',
187+
version: '2.0.6',
188188

189189
cors: false,
190190
html5: true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fileapi",
33
"exportName": "FileAPI",
4-
"version": "2.0.5",
4+
"version": "2.0.6",
55
"devDependencies": {
66
"grunt": "~0.4.5",
77
"grunt-version": "~0.3.0",

0 commit comments

Comments
 (0)