Skip to content

Commit

Permalink
bump version to 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
psolom committed Apr 8, 2017
1 parent 07aa9de commit 20f4b39
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
28 changes: 25 additions & 3 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
Version 2.3.2
---------------------------
- implement "extract" action to unzip archives #22;
- removed duplicated configuration options (common for both client and server sides) #109;
- new isolated way to handle server-side errors;
- bugfix: wrong scroll behavior in IE #151;
- bugfix: error when copying to a folder with spaces #153;
- bugfix: not loading userfiles folder when it's empty #154;

Backward incompatible changes:
- server-side language files specific for a particular connector should be removed;
- new format for server-side errors: label + arguments to be treated with JSON lang files;
- `security`.`allowFolderDownload` server-side configuration option moved to `options` section;
- removed the following server-side configuration options (see details in #109):
* `overrideClientConfig` (since no duplicated options now);
* `options`.`culture` (since no translations at the server side now);
* `security`.`allowChangeExtensions` (no affect security, clint-side only now);
* `upload`.`paramName` (no sense to change value for this option);
* `upload`.`chunkSize` (client-side solely option);
- reduced a list of parameters in "initiate" server-side action;


Version 2.3.1
---------------------------
- extended drag and drop: ability to drag items between panels (tree <-> view) #133;
- improved items behavior on draggable and selectable actions
- improved view items rendering performance
- bugfix: wrong unselect behavior for selected items
- improved items behavior on draggable and selectable actions;
- improved view items rendering performance;
- bugfix: wrong unselect behavior for selected items;
- bugfix: wrong position of "parent" item in case "folderPosition" options is set to "top" #143;


Expand Down
2 changes: 1 addition & 1 deletion config/filemanager.config.default.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,5 @@
"extra_js_async": true
},
"url": "https://github.com/servocoder/RichFilemanager",
"version": "2.3.1"
"version": "2.3.2"
}
2 changes: 0 additions & 2 deletions connectors/php/plugins/s3/S3Filemanager.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,6 @@ public function actionGetFolder()
$this->error('DIRECTORY_NOT_EXIST', [$target_path]);
}

//$res = $this->getFilesList($target_fullpath);

if(!$handle = @opendir($target_fullpath)) {
$this->error('UNABLE_TO_OPEN_DIRECTORY', [$target_path]);
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rich-filemanager",
"version": "2.3.1",
"version": "2.3.2",
"description": "Highly customizable open-source file manager",
"main": "scripts/filemanager.js",
"repository": {
Expand Down

0 comments on commit 20f4b39

Please sign in to comment.