Descriptions updated
This commit is contained in:
parent
49c25d97be
commit
23d0a1b4e0
|
@ -16,6 +16,7 @@ formatted plain text.
|
|||
- Change type of values.
|
||||
- Colorized values, color depends of the value type.
|
||||
- Search & highlight text in the treeview.
|
||||
- Undo/redo all actions.
|
||||
- Format and compact JSON in plain text.
|
||||
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<zip destfile="${lib}/${package}-${version}.zip">
|
||||
<fileset dir="${root}" includes="LICENSE" />
|
||||
<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="demo.html" />
|
||||
<fileset dir="${root}" includes="jsoneditor/jsoneditor.js" />
|
||||
|
@ -45,7 +45,7 @@
|
|||
<zip destfile="${lib}/${package}-${version}.min.zip">
|
||||
<fileset dir="${root}" includes="LICENSE" />
|
||||
<fileset dir="${root}" includes="NOTICE" />
|
||||
<fileset dir="${root}" includes="README" />
|
||||
<fileset dir="${root}" includes="README.md" />
|
||||
<fileset dir="${root}" includes="changelog.txt" />
|
||||
<!-- TODO: create demo (with correct links to minified library)
|
||||
<fileset dir="${root}" includes="demo.html" />
|
||||
|
|
|
@ -5,7 +5,7 @@ http://jsoneditoronline.org
|
|||
<not yet released>, version 1.5.0
|
||||
|
||||
- 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).
|
||||
|
||||
|
||||
|
|
|
@ -376,6 +376,7 @@ button.jsoneditor-undo:disabled {
|
|||
button.jsoneditor-redo:disabled {
|
||||
background-position: -360px -24px;
|
||||
}
|
||||
/* TODO: css for button:disabled is not supported by IE8 */
|
||||
button.jsoneditor-compact {
|
||||
background-position: -384px 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue