Skip to content

Commit 8f89bea

Browse files
committed
release elFinder version 2.1.19
1 parent 41acf1f commit 8f89bea

6 files changed

Lines changed: 29 additions & 9 deletions

File tree

Changelog

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2016-12-10 Naoki Sawada <hypweb@gmail.com>
2+
3+
* elFinder (2.1.19):
4+
- [js] Fixed #1000 Wrap compiled code in UMD (for commonJs and AMD support)
5+
- [VD:OneDrive,Box] Fixed #1774 dose not work when PHP has `open_basedir`
6+
- [cmd:edit,php:core] Fixed #1779 save contents with original character encoding
7+
- [ui:toolbar] Fixed #1778 displayTextLabel option not works
8+
- [cmd:edit] add encoding select box rel. #1779
9+
- [cmd:search] Fixed #1782 search by mimetype dose not work (>=2.1.16)
10+
- [ui:dialog] Fixed #1785 trigger resize event with `maximize:on` in minimize element
11+
- [VD:abstract] Fixed #1783 Illegal duplicate data as bind in duplicate command
12+
- [cmd:edit] include elFinder instance as `fm` into `ta.editor` property
13+
- [js:core] Fixed #1791 implement JS, CSS loader and auto load of elFinder CSS
14+
- [cmd:resize] Fixed #1789 bug that crop image size is change while dragging
15+
- [js:core] Fixed #1788 bug that chunked upload timeout processing is invalid
16+
- [VD:abstract] Fixed #1799 uses `link()` in exec `zipdl` to more faster
17+
- And some minor bug fixes
18+
19+
120
2016-11-21 Naoki Sawada <hypweb@gmail.com>
221

322
* elFinder (2.1.18):

css/elfinder.full.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* elFinder - file manager for web
3-
* Version 2.1.18 (2.1-src Nightly: 9d4693d) (2016-12-09)
3+
* Version 2.1.19 (2016-12-10)
44
* http://elfinder.org
55
*
66
* Copyright 2009-2016, Studio 42

css/elfinder.min.css

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

js/elfinder.full.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* elFinder - file manager for web
3-
* Version 2.1.18 (2.1-src Nightly: 9d4693d) (2016-12-09)
3+
* Version 2.1.19 (2016-12-10)
44
* http://elfinder.org
55
*
66
* Copyright 2009-2016, Studio 42
@@ -6670,7 +6670,7 @@ if (!Object.keys) {
66706670
*
66716671
* @type String
66726672
**/
6673-
elFinder.prototype.version = '2.1.18 (2.1-src Nightly: 9d4693d)';
6673+
elFinder.prototype.version = '2.1.19';
66746674

66756675

66766676

@@ -15504,7 +15504,8 @@ $.fn.elfindertree = function(fm, opts) {
1550415504
}
1550515505
}
1550615506

15507-
sync(true);
15507+
// fm.cwd() became empty object when cwd removed
15508+
fm.cwd().hash && sync(true);
1550815509
})
1550915510
// remove dirs
1551015511
.remove(function(e) {

js/elfinder.min.js

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elfinder",
3-
"version": "2.1.18",
3+
"version": "2.1.19",
44
"description": "Open-source file manager for web, written in JavaScript using jQuery and jQuery UI.",
55
"author": "Studio-42 (https://github.com/Studio-42/elFinder)",
66
"license": "3-clauses BSD",

0 commit comments

Comments
 (0)