Skip to content
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.

Commit

Permalink
3.20-test1
Browse files Browse the repository at this point in the history
* "`DOCUMENT_ROOT` is symlink" bugfix
* Uniform is replaced with my alternative - transForm
(http://jquery.sunhater.com/transForm)
* Improved image viewer
* Improved drag & drop upload functionality. Progress bars in a dialog
box.
* Supports drag & drop images from external html page
* Language dropdown in settings toolbar
* No border-radius when scrollbar(s) exists into files and folders panes
* `_dropUploadMaxFilesize` option is added. (Drag & dropping bigger
files cause crash the web browser)
* `composer.json` file added
* Changelog file is now in Markdown format
* 4 new labels to translate
  • Loading branch information
sunhater committed Aug 19, 2014
1 parent 8a9c360 commit aa4f340
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 57 deletions.
6 changes: 3 additions & 3 deletions conf/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

// GENERAL SETTINGS

'disabled' => true,
'disabled' => false,
'uploadURL' => "upload",
'uploadDir' => "",
'theme' => "default",
Expand Down Expand Up @@ -119,8 +119,8 @@
//'_sessionDomain' => ".mysite.com",
//'_sessionPath' => "/my/path",

//'_cssMinCmd' => "java -jar /path/to/yuicompressor.jar --type css {file}",
//'_jsMinCmd' => "java -jar /path/to/yuicompressor.jar --type js {file}",
'_cssMinCmd' => "java -jar D:/yuicompressor.jar --type css {file}",
'_jsMinCmd' => "java -jar D:/yuicompressor.jar --type js {file}",

);

Expand Down
2 changes: 1 addition & 1 deletion core/class/uploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class uploader {

/** Release version */
const VERSION = "3.12";
const VERSION = "3.20-test1";

/** Config session-overrided settings
* @var array */
Expand Down
91 changes: 38 additions & 53 deletions doc/Changelog → doc/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,63 +1,67 @@
VERSION 3.20-test1 - 2014-08-19
-------------------------------
* "`DOCUMENT_ROOT` is symlink" bugfix
* Uniform is replaced with my alternative - transForm (http://jquery.sunhater.com/transForm)
* Improved image viewer
* Improved drag & drop upload functionality. Progress bars in a dialog box.
* Supports drag & drop images from external html page
* Language dropdown in settings toolbar
* No border-radius when scrollbar(s) exists into files and folders panes
* `_dropUploadMaxFilesize` option is added. (Drag & dropping bigger files cause crash the web browser)
* `composer.json` file added
* Changelog file is now in Markdown format
* 4 new labels to translate

VERSION 3.12 - 2014-07-09
-------------------------
* XSS security fix
* Performance fix
* taphold event added. Emulates right-click on touchscreen devices
* Click with Shift key functionality added
* Click with `Shift` key functionality added
* Minor fixes


VERSION 3.11 - 2014-04-21
-------------------------
* "Unknown error." fixes when using `_normalizeFilenames` setting
and upon new folder creation

* "Unknown error." fixes when using `_normalizeFilenames` setting and upon new folder creation

VERSION 3.10 - 2014-04-16
-------------------------
* Important secirity fixes


VERSION 3.0 - 2014-04-08
------------------------
* Minor fixes


VERSION 3.0-pre1 - 2014-04-02
-----------------------------
* Now KCFinder requires PHP >= 5.3 becouse of using namespace: "kcfinder"
* Now KCFinder requires PHP >= 5.3 becouse of using namespace: `kcfinder`
* Support CSS & JavaScript minifier (on the fly)
* jQuery UI & Uniform support. New theme & theme engine (old themes are not supported)
* Improvements in JavaScript code to be well compressed and faster
* Keep PNG transparency in generated thumbnails
* New image viewer


VERSION 2.54 - 2014-03-12
-------------------------
* Performance fix only


VERSION 2.53 - 2014-02-22
-------------------------
* Session start fix
* TinyMCE 4 support


VERSION 2.52 - 2014-01-20
-------------------------
* Various image drivers support (gd, imagemagick, graphicsmagic)
* Various image drivers support (`gd`, `imagemagick`, `graphicsmagic`)
* Auto-rotate images based on EXIF data
* PNG watermark support


VERSION 2.51 - 2010-08-25
-------------------------
* Drag and drop uploading plugin - big fixes
* Cookies problem when using single words or IPs as hostname resolved
* Vietnamese localization


VERSION 2.5 - 2010-08-23
------------------------
* Drupal module support
Expand All @@ -67,125 +71,106 @@ VERSION 2.5 - 2010-08-23
* Renaming current folder bugfix
* Small bugfixes


VERSION 2.41 - 2010-07-24
-------------------------
* Directory types engine improvement
* New 'denyExtensionRename' config setting added

* New `denyExtensionRename` config setting added

VERSION 2.4 - 2010-07-20
------------------------
* Online checking if new version is released in About box. To use this
feature you should to have Curl, HTTP or Socket extension, or
allow_url_fopen ini setting should be "on"
* New 'denyUpdateCheck' config setting added
* New 'dark' theme added (made by Dark Preacher)
* Additional 'theme' GET parameter to choose a theme from URL
* Online checking if new version is released in About box. To use this feature you should to have `curl`, `http` or `socket` extension, or `allow_url_fopen` ini setting should be `on`
* New `denyUpdateCheck` config setting added
* New `dark` theme added (made by Dark Preacher)
* Additional `theme` GET parameter to choose a theme from URL
* Thumbnails loading improvement
* Some changes in Oxygen CSS theme
* Replace alert() and confirm() JavaScript functions with good-looking boxes
* Replace `alert()` and `confirm()` JavaScript functions with good-looking boxes
* Safari 3 right-click fix
* Small bugfixes


VERSION 2.32 - 2010-07-11
-------------------------
* 'filenameChangeChars' and 'dirnameChangeChars' config settings added
* Content-Type header fix for css.php, js_localize.php and
js/browser/joiner.php
* CKEditorFuncNum with index 0 bugfix
* Session save handler example in core/autoload.php

* `filenameChangeChars` and `dirnameChangeChars` config settings added
* Content-Type header fix for `css.php`, `js_localize.php` and `js/browser/joiner.php`
* CKEditorFuncNum with index `0` bugfix
* Session save handler example in `core/autoload.php`

VERSION 2.31 - 2010-07-01
-------------------------
* Proportional uploaded image resize bugfix
* Slideshow bugfixes
* Other small bugfixes


VERSION 2.3 - 2010-06-25
------------------------
* Replace XML Ajax responses with JSON
* Replace old 'readonly' config option with advanced 'access' option
PLEASE UPDATE YOUR OLD CONFIG FILE!!!
* Replace old `readonly` config option with advanced `access` option. PLEASE UPDATE YOUR OLD CONFIG FILE!!!
* Slideshow images in current folder using arrow keys
* Multipe files upload similar to Facebook upload (not works in IE!)
* Option to set protocol, domain and port in 'uploadURL' setting
* Option to set protocol, domain and port in `uploadURL` setting
* Bugfixes


VERSION 2.21 - 2010-11-19
-------------------------
* Bugfixes only


VERSION 2.2 - 2010-07-27
------------------------
* Many bugfixes
* Read-only config option


VERSION 2.1 - 2010-07-04
------------------------
* Endless JavaScript loop on KCFinder disable bugfix
* New config setting whether to generate .htaccess file in upload folder
* New config setting whether to generate `.htaccess` file in upload folder
* Upload to specified folder from CKEditor & FCKeditor direct upload dialog
* Select multiple files bugfixes


VERSION 2.0 - 2010-07-01
------------------------
* Brand new core
* Option to resize files/folders panels with mouse drag
* Select multiple files with Ctrl key
* Option to resize `files/folders` panels with mouse drag
* Select multiple files with `Ctrl` key
* Return list of files to custom integrating application
* Animated folder tree
* Directory Type specific configuration settings
* Download multiple files or a folder as ZIP file


VERSION 1.7 - 2010-06-17
------------------------
* Maximize toolbar button
* Clipboard for copying and moving multiple files
* Show warning if the browser is not capable to display KCFinder
* Google Chrome Frame support for old versions of Internet Explorer


VERSION 1.6 - 2010-06-02
------------------------
* Support of Windows Apache server
* Support of Fileinfo PHP extension to detect mime types (*mime directory type)
* Option to deny globaly some dangerous extensions like exe, php, pl, cgi etc
* Check for denied file extension on file rename
* Disallow to upload hidden files (with names begins with .)
* Support of Fileinfo PHP extension to detect mime types (`*mime` directory type)
* Option to deny globaly some dangerous extensions like `exe`, `php`, `pl`, `cgi` etc
* Check for `denied` file extension on file rename
* Disallow to upload hidden files (with names begins with `.`)
* Missing last character of filenames without extension bugfix
* Some small bugfixes


VERSION 1.5 - 2010-05-30
------------------------
* Filenames with spaces download bugfix
* FCKEditor direct upload bugfix
* Thumbnail generation bugfixes


VERSION 1.4 - 2010-05-24
------------------------
* Client-side caching bugfix
* Custom integrations - window.KCFinder.callBack()
* Custom integrations - `window.KCFinder.callBack()`
* Security fixes


VERSION 1.3 - 2010-05-06
------------------------
* Another session bugfix. Now session configuratin works!
* Show filename by default bugfix
* Loading box on top right corner


VERSION 1.2 - 2010-05-03
------------------------
* Thumbnail generation bugfix
Expand Down

0 comments on commit aa4f340

Please sign in to comment.