diff --git a/changelog b/changelog index 2891ce09..82fd76dc 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,34 @@ +Version 2.7.0 +--------------------------- +- server-side search implemented, relative to the open folder #271 +- implemented client-side datetime formatting using globalizejs and cldrjs #227 +- added "createFolder" capability in JSON config file (affects appropriate UI elements visibility) #227 +- adjusted language codes and UI lang files names #227 +- added new translations into language files #269 #271 +- changed behavior of the "close" button of preview mode; made it more straightforward, respecting search mode +- PHP connector: implemented events and listeners (as callback functions) for API operations #236 servocoder/RichFilemanager#24 +- PHP connector: throw an error if delete operation failed servocoder/RichFilemanager#29 +- PHP connector: allow double underscores in file names servocoder/RichFilemanager#28 +- PHP connector: automatically exclude image thumbnails folder from the output servocoder/RichFilemanager#27 +- PHP connector: avoid spaces and parentheses inserted into a file name while upload #112 servocoder/RichFilemanager#26 +- PHP connector: use a single point to calculate filesize across application servocoder/RichFilemanager#25 +- JAVA connector: actualized to the latest API version and support all features; moved to separate repository +- bugfix: fixed missed "home" breadcrumbs icon on after RFM initiated +- bugfix: PHP connector local storage always return "false" when deleting file servocoder/RichFilemanager#29 + +Backward incompatible changes: +- API: error response format altered to correspond to JSON API standard #210 servocoder/RichFilemanager#30 +- API: new error handling flow; required HTTP headers; strict JSON API conformity #270 servocoder/RichFilemanager#33 +- API: simplified workflow of the "download" method, doesn't require AJAX API extra call anymore #248 #265 servocoder/RichFilemanager#32 +- API: "getfile" API method RENAMED to "getinfo" and return either file or folder stats. Restriction to handle files only is removed #270 +- API: "getfolder" API method RENAMED to "readfolder". No changes in functionality #270 +- API: "readfile", "getimage" and "download" methods USE THE SAME FLOW to read file content and write it to the output #270 +- API: "editfile" method is REMOVED, instead of it the "readfile" is used at the client #270 +- API: "seekfolder" new method is ADDED #271 servocoder/RichFilemanager#34 +- API file and folder object response structure: removed "timestamp" attribute; "created" and "modified" attributes now contain unix timestamps instead of formatted datetime strings #227 +- "options.searchBox" configuration option is removed, new section "search" added instead #271 + + Version 2.6.5 --------------------------- - tightened dependencies between "richfilemanager-php" and main packages #268 @@ -6,6 +37,7 @@ Version 2.6.5 - Vietnamese language: updated translations #267 - Czech language: updated translations + Version 2.6.4 --------------------------- - reworked folder loader for filetree and right panel #255 diff --git a/composer.json b/composer.json index d1e3fe69..6f8f7a01 100644 --- a/composer.json +++ b/composer.json @@ -25,6 +25,6 @@ "vendor-dir": "connectors/php/vendor" }, "require": { - "servocoder/richfilemanager-php": "dev-dev" + "servocoder/richfilemanager-php": "1.2.*" } } \ No newline at end of file diff --git a/package.json b/package.json index 634ca64f..971f1168 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rich-filemanager", - "version": "2.6.5", + "version": "2.7.0", "description": "Highly customizable open-source file manager", "main": "scripts/filemanager.js", "repository": {