mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
fixed bug with ignoring all browser defined keys
This commit is contained in:
parent
21035cfc98
commit
2b4e457a39
1 changed files with 174 additions and 172 deletions
346
ChangeLog
346
ChangeLog
|
|
@ -1,173 +1,175 @@
|
|||
2012.08.*, Version 0.1.6
|
||||
|
||||
* From now jsload, cssload and anyload suport arrays.
|
||||
|
||||
* Added ability to move scrollbar, when Home and
|
||||
End buttons pressed.
|
||||
|
||||
* Added ability to move with Page Up and Page Down
|
||||
buttons.
|
||||
|
||||
* Added moving scrolling by cursor ability.
|
||||
|
||||
* Fixed bug with go to parent directory: from now,
|
||||
if parent directory not in view area, page will
|
||||
scroll to needed place.
|
||||
|
||||
* Fixed bug with tab key pressed.
|
||||
|
||||
* Fixed bug: files now clickable to.
|
||||
|
||||
* Fixed bug with double click on files.
|
||||
|
||||
* Fixed bug with double click on images.
|
||||
|
||||
* Fixed bug with Array.isArray and getElementsByClassName in IE.
|
||||
|
||||
* Fixed bug with document.head in IE.
|
||||
|
||||
* JQuery 1.7.2 changed to 1.8.0
|
||||
|
||||
* Added support of mibile browsers and touch events.
|
||||
|
||||
|
||||
2012.08.06, Version 0.1.5
|
||||
|
||||
* Added tab support.
|
||||
|
||||
* Fixed bug with Path links.
|
||||
|
||||
* From now CodeMirror js files loads, when f4 key pressed.
|
||||
|
||||
* Fixed bug with showing CodeMirror after first show.
|
||||
|
||||
* Added ability to read files in CodeMirror.
|
||||
|
||||
* Added ability rename files.
|
||||
|
||||
* Fixed bug with CodeMirror vertical scroll bar.
|
||||
|
||||
* Added loading image when file going to be edited.
|
||||
|
||||
* All sync functions changed to async equivalents.
|
||||
|
||||
* On f4 key pressed when current-file is folder
|
||||
CodeMirror opens json data of folder.
|
||||
|
||||
* Fixed bug with response when we have no rihgts
|
||||
read dir server sends 404 response for now,
|
||||
not 200 ok.
|
||||
|
||||
* Fixed bug with forming error of loading dir.
|
||||
Was : "not found".
|
||||
Now : "Error: EACCES, readdir '/root'"
|
||||
|
||||
* Fixed bug with showing loading spinner, when f4 key
|
||||
pressed couple times and CodeMirror not loaded fully.
|
||||
|
||||
* Setted readOnly mode, when directory opened in CodeMirror.
|
||||
|
||||
* Added api for getting curent file, getting active
|
||||
and passive panels and show/hide any of panels.
|
||||
|
||||
|
||||
2012.07.27, Version 0.1.4
|
||||
|
||||
* Added local version of Droids font for offline mode
|
||||
|
||||
* Fixed bug with positioning of cursor when came back
|
||||
from folder whith long name.
|
||||
|
||||
* Fixed bug with setting up current file, if a couple of
|
||||
files was with the same name on 16-chars, after going
|
||||
up on folders, current file would be last.
|
||||
|
||||
* Fixed bug with links and titles with spaces in Path of
|
||||
current directory.
|
||||
|
||||
* Added ability to send 404 response if file not found.
|
||||
|
||||
* Fixed bug which occurs when error reading directory happens.
|
||||
|
||||
* Fixed bug: ErrorImage.title writes always for now, no matter
|
||||
why error occurred.
|
||||
|
||||
* Seted up default cursor on file attributes.
|
||||
|
||||
* _currentToParent refactored, no more cicles again. Changed
|
||||
the way of searching of current root directory, now it shoud
|
||||
be more faster, DOM, short, simple and logical.
|
||||
|
||||
* Added ability to view images on F3 key pressed.
|
||||
|
||||
* Added ability to work view images offline.
|
||||
|
||||
* Added async flag to anyload function.
|
||||
|
||||
* Added ability remove not loaded scripts from DOM.
|
||||
|
||||
|
||||
2012.07.19, Version 0.1.3
|
||||
|
||||
* Fixed bug with nodester (jitsu env.HOME make him go done).
|
||||
|
||||
* Fixed bug: gzip do not working out, becouse accessible flag settet
|
||||
up to _controller object.
|
||||
|
||||
* To every panel added scroll bars which is hiding if do not needed.
|
||||
|
||||
* Fixed bug with setting up flag in config.json: do not minimize js.
|
||||
|
||||
* Fixed bugs many bugs in _anyload function (client.js).
|
||||
|
||||
* Added function cssLoad to client.js
|
||||
|
||||
* Added Client Side CodeMirror library with name Cloud Editor.
|
||||
|
||||
* Fixed bug with building file table from json data, when we go around
|
||||
and come back to root dir.
|
||||
If name of a file or directory is more then 16 charactes it shows
|
||||
like 'VERY-LONG-NAME..', so becaouse of on first came we load page
|
||||
like no js, so json building from file table thet was genereted on
|
||||
server. So if file to long we should take it's name from title
|
||||
parameter of <a> tag, it's wasn't, so folder navigation not every
|
||||
time was possible.
|
||||
|
||||
* Fixed bug with undefined size on root directory of Cloud Commander.
|
||||
Now Cloud Commander writes size 0, if can't get size, and besides will
|
||||
setted b char: "0b".
|
||||
|
||||
* Added supporting of Russian language in directory names.
|
||||
|
||||
|
||||
2012.07.14, Version 0.1.2
|
||||
|
||||
* Added suport of jitsu.
|
||||
|
||||
* Added module objects.js, Minify and Cache objects moved there.
|
||||
|
||||
* Module Minify moved to node_modules dir
|
||||
|
||||
* Changed the minimize function calls accroding to Minify 0.1.2 changes.
|
||||
|
||||
|
||||
2012.07.11, Version 0.1.1
|
||||
|
||||
* Added onerror parametr to anyload in Clinet Side, so now we can process situation when
|
||||
js-script(or something other) has not loaded.
|
||||
|
||||
* Added jquery file, so from now Cloud Commander can totaly work offline.
|
||||
|
||||
* Added css-lint to travis ci.
|
||||
|
||||
* Fixed bug in object Minify, doit function, more processing function did not
|
||||
return final_code so changes was not saving, and clien side loaded keyBinding.js
|
||||
and cloudfunc.js full sized versions.
|
||||
|
||||
* Changed the way Minify post-processing js-files so, from now in Minify object
|
||||
post-processing functions passed like this {'client.js': function(){}}
|
||||
|
||||
* Added ability to read file data from Minify Cache, without writing to disk
|
||||
|
||||
* Changed the passing MoreProcessing agrument to jsScripts function Minify module,
|
||||
2012.08.*, Version 0.1.6
|
||||
|
||||
* From now jsload, cssload and anyload suport arrays.
|
||||
|
||||
* Added ability to move scrollbar, when Home and
|
||||
End buttons pressed.
|
||||
|
||||
* Added ability to move with Page Up and Page Down
|
||||
buttons.
|
||||
|
||||
* Added moving scrolling by cursor ability.
|
||||
|
||||
* Fixed bug with go to parent directory: from now,
|
||||
if parent directory not in view area, page will
|
||||
scroll to needed place.
|
||||
|
||||
* Fixed bug with tab key pressed.
|
||||
|
||||
* Fixed bug: files now clickable to.
|
||||
|
||||
* Fixed bug with double click on files.
|
||||
|
||||
* Fixed bug with double click on images.
|
||||
|
||||
* Fixed bug with Array.isArray and getElementsByClassName in IE.
|
||||
|
||||
* Fixed bug with document.head in IE.
|
||||
|
||||
* JQuery 1.7.2 changed to 1.8.0
|
||||
|
||||
* Added support of mibile browsers and touch events.
|
||||
|
||||
* Fixed bug with ignoring all browser defined keys.
|
||||
|
||||
|
||||
2012.08.06, Version 0.1.5
|
||||
|
||||
* Added tab support.
|
||||
|
||||
* Fixed bug with Path links.
|
||||
|
||||
* From now CodeMirror js files loads, when f4 key pressed.
|
||||
|
||||
* Fixed bug with showing CodeMirror after first show.
|
||||
|
||||
* Added ability to read files in CodeMirror.
|
||||
|
||||
* Added ability rename files.
|
||||
|
||||
* Fixed bug with CodeMirror vertical scroll bar.
|
||||
|
||||
* Added loading image when file going to be edited.
|
||||
|
||||
* All sync functions changed to async equivalents.
|
||||
|
||||
* On f4 key pressed when current-file is folder
|
||||
CodeMirror opens json data of folder.
|
||||
|
||||
* Fixed bug with response when we have no rihgts
|
||||
read dir server sends 404 response for now,
|
||||
not 200 ok.
|
||||
|
||||
* Fixed bug with forming error of loading dir.
|
||||
Was : "not found".
|
||||
Now : "Error: EACCES, readdir '/root'"
|
||||
|
||||
* Fixed bug with showing loading spinner, when f4 key
|
||||
pressed couple times and CodeMirror not loaded fully.
|
||||
|
||||
* Setted readOnly mode, when directory opened in CodeMirror.
|
||||
|
||||
* Added api for getting curent file, getting active
|
||||
and passive panels and show/hide any of panels.
|
||||
|
||||
|
||||
2012.07.27, Version 0.1.4
|
||||
|
||||
* Added local version of Droids font for offline mode
|
||||
|
||||
* Fixed bug with positioning of cursor when came back
|
||||
from folder whith long name.
|
||||
|
||||
* Fixed bug with setting up current file, if a couple of
|
||||
files was with the same name on 16-chars, after going
|
||||
up on folders, current file would be last.
|
||||
|
||||
* Fixed bug with links and titles with spaces in Path of
|
||||
current directory.
|
||||
|
||||
* Added ability to send 404 response if file not found.
|
||||
|
||||
* Fixed bug which occurs when error reading directory happens.
|
||||
|
||||
* Fixed bug: ErrorImage.title writes always for now, no matter
|
||||
why error occurred.
|
||||
|
||||
* Seted up default cursor on file attributes.
|
||||
|
||||
* _currentToParent refactored, no more cicles again. Changed
|
||||
the way of searching of current root directory, now it shoud
|
||||
be more faster, DOM, short, simple and logical.
|
||||
|
||||
* Added ability to view images on F3 key pressed.
|
||||
|
||||
* Added ability to work view images offline.
|
||||
|
||||
* Added async flag to anyload function.
|
||||
|
||||
* Added ability remove not loaded scripts from DOM.
|
||||
|
||||
|
||||
2012.07.19, Version 0.1.3
|
||||
|
||||
* Fixed bug with nodester (jitsu env.HOME make him go done).
|
||||
|
||||
* Fixed bug: gzip do not working out, becouse accessible flag settet
|
||||
up to _controller object.
|
||||
|
||||
* To every panel added scroll bars which is hiding if do not needed.
|
||||
|
||||
* Fixed bug with setting up flag in config.json: do not minimize js.
|
||||
|
||||
* Fixed bugs many bugs in _anyload function (client.js).
|
||||
|
||||
* Added function cssLoad to client.js
|
||||
|
||||
* Added Client Side CodeMirror library with name Cloud Editor.
|
||||
|
||||
* Fixed bug with building file table from json data, when we go around
|
||||
and come back to root dir.
|
||||
If name of a file or directory is more then 16 charactes it shows
|
||||
like 'VERY-LONG-NAME..', so becaouse of on first came we load page
|
||||
like no js, so json building from file table thet was genereted on
|
||||
server. So if file to long we should take it's name from title
|
||||
parameter of <a> tag, it's wasn't, so folder navigation not every
|
||||
time was possible.
|
||||
|
||||
* Fixed bug with undefined size on root directory of Cloud Commander.
|
||||
Now Cloud Commander writes size 0, if can't get size, and besides will
|
||||
setted b char: "0b".
|
||||
|
||||
* Added supporting of Russian language in directory names.
|
||||
|
||||
|
||||
2012.07.14, Version 0.1.2
|
||||
|
||||
* Added suport of jitsu.
|
||||
|
||||
* Added module objects.js, Minify and Cache objects moved there.
|
||||
|
||||
* Module Minify moved to node_modules dir
|
||||
|
||||
* Changed the minimize function calls accroding to Minify 0.1.2 changes.
|
||||
|
||||
|
||||
2012.07.11, Version 0.1.1
|
||||
|
||||
* Added onerror parametr to anyload in Clinet Side, so now we can process situation when
|
||||
js-script(or something other) has not loaded.
|
||||
|
||||
* Added jquery file, so from now Cloud Commander can totaly work offline.
|
||||
|
||||
* Added css-lint to travis ci.
|
||||
|
||||
* Fixed bug in object Minify, doit function, more processing function did not
|
||||
return final_code so changes was not saving, and clien side loaded keyBinding.js
|
||||
and cloudfunc.js full sized versions.
|
||||
|
||||
* Changed the way Minify post-processing js-files so, from now in Minify object
|
||||
post-processing functions passed like this {'client.js': function(){}}
|
||||
|
||||
* Added ability to read file data from Minify Cache, without writing to disk
|
||||
|
||||
* Changed the passing MoreProcessing agrument to jsScripts function Minify module,
|
||||
no it passes with a file name, and js file name writing only once.
|
||||
Loading…
Add table
Add a link
Reference in a new issue