Descriptions updated

This commit is contained in:
Jos de Jong 2012-09-30 10:22:03 +02:00
parent 49c25d97be
commit 23d0a1b4e0
4 changed files with 5 additions and 3 deletions

View File

@ -16,6 +16,7 @@ formatted plain text.
- Change type of values. - Change type of values.
- Colorized values, color depends of the value type. - Colorized values, color depends of the value type.
- Search & highlight text in the treeview. - Search & highlight text in the treeview.
- Undo/redo all actions.
- Format and compact JSON in plain text. - Format and compact JSON in plain text.

View File

@ -32,7 +32,7 @@
<zip destfile="${lib}/${package}-${version}.zip"> <zip destfile="${lib}/${package}-${version}.zip">
<fileset dir="${root}" includes="LICENSE" /> <fileset dir="${root}" includes="LICENSE" />
<fileset dir="${root}" includes="NOTICE" /> <fileset dir="${root}" includes="NOTICE" />
<fileset dir="${root}" includes="README" /> <fileset dir="${root}" includes="README.md" />
<fileset dir="${root}" includes="changelog.txt" /> <fileset dir="${root}" includes="changelog.txt" />
<fileset dir="${root}" includes="demo.html" /> <fileset dir="${root}" includes="demo.html" />
<fileset dir="${root}" includes="jsoneditor/jsoneditor.js" /> <fileset dir="${root}" includes="jsoneditor/jsoneditor.js" />
@ -45,7 +45,7 @@
<zip destfile="${lib}/${package}-${version}.min.zip"> <zip destfile="${lib}/${package}-${version}.min.zip">
<fileset dir="${root}" includes="LICENSE" /> <fileset dir="${root}" includes="LICENSE" />
<fileset dir="${root}" includes="NOTICE" /> <fileset dir="${root}" includes="NOTICE" />
<fileset dir="${root}" includes="README" /> <fileset dir="${root}" includes="README.md" />
<fileset dir="${root}" includes="changelog.txt" /> <fileset dir="${root}" includes="changelog.txt" />
<!-- TODO: create demo (with correct links to minified library) <!-- TODO: create demo (with correct links to minified library)
<fileset dir="${root}" includes="demo.html" /> <fileset dir="${root}" includes="demo.html" />

View File

@ -5,7 +5,7 @@ http://jsoneditoronline.org
<not yet released>, version 1.5.0 <not yet released>, version 1.5.0
- Implemented history, enabling undo/redo of all actions. - Implemented history, enabling undo/redo of all actions.
- Created menu icons (instead of plain text). - Created menu icons (instead of text buttons).
- Cleaned up the code (removed unused params, improved comments, etc). - Cleaned up the code (removed unused params, improved comments, etc).

View File

@ -376,6 +376,7 @@ button.jsoneditor-undo:disabled {
button.jsoneditor-redo:disabled { button.jsoneditor-redo:disabled {
background-position: -360px -24px; background-position: -360px -24px;
} }
/* TODO: css for button:disabled is not supported by IE8 */
button.jsoneditor-compact { button.jsoneditor-compact {
background-position: -384px 0; background-position: -384px 0;
} }