All Versions
224
Latest Version
Avg Release Cycle
22 days
Latest Release
140 days ago
Changelog History
Page 18
Changelog History
Page 18
-
v5.1.5 Changes
February 15, 2016- ๐ Fixed #272: Checkbox for boolean values visible in view mode.
-
v5.1.4 Changes
February 13, 2016- Fixed broken example 04_load_and_save.html. See #265.
-
v5.1.3 Changes
February 03, 2016- ๐ Fixed #264: Clicking items in the context menu not working on Firefox.
-
v5.1.2 Changes
January 21, 2016- ๐ Improvements in sanitizing invalid JSON.
- โก๏ธ Updated dependencies to the latest version.
- ๐ Fixed clicking format/compact not triggering an onChange event.
- ๐ Fixed #259: when having a JSONEditor inside an HTML form, clicking an entry in the context menu did submit the form.
- ๐ Fixed browserify build, see #260. Thanks @onip.
-
v5.1.1 Changes
January 16, 2016- ๐ Fixed #257: Improving error messages for enum errors failed when the schema contains references.
- ๐ Fixed #255: Removed wrong console warning about the option
search
. - ๐ Fixed error thrown when option
search
is false (see #256). Thanks @MiroHibler.
-
v5.1.0 Changes
January 14, 2016- ๐ Implemented support for JSON schema validation, powered by
ajv
. - Implemented #197: display an error in case of duplicate keys in an object.
- Implemented #183: display a checkbox left from boolean values, so you can easily switch between true/false.
- Implemented debouncing of keyboard input, resulting in much less history actions whilst typing.
- โ Added a minimalist bundle to the
dist
folder, excludingace
andajv
. - ๐ Fixed #222: editor throwing
onChange
events when switching mode. - ๐ Fixed an error throw when switching to mode "code" via the menu.
- ๐ Fixed interfering shortcut keys: changed quick keys to select multiple fields
from
Shift+Arrow Up/Down
toCtrl+Shift+Arrow Up/Down
.
- ๐ Implemented support for JSON schema validation, powered by
-
v5.0.1 Changes
December 31, 2015- ๐ Fixed a bug in positioning of the context menu for multiple selected nodes.
- ๐ Fixed #130: option
onEditable
not available in modeform
. - ๐ Fixed #202: removed
version
field from bower.json.
-
v5.0.0 Changes
December 31, 2015- ๐ New design.
- ๐ Implemented selection of multiple nodes, allowing to move/duplicate/remove multiple nodes at once (See #106).
- Implemented a new option
escapeUnicode
, which will show the hexadecimal unicode instead of the character itself. (See #93 and #230). - Implemented method
getMode
. - Implemented option
onModeChange(oldMode, newMode)
. - Implemented #203: Objects and arrays in mode
form
andview
are now expandable by clicking the field names too. - Replaced the PNG icon images with SVG. Thanks @1j01.
- ๐ Renamed all CSS classes They now have prefixes
.jsoneditor-
to prevent name collisions with css frameworks like bootstrap. - ๐ Renamed options
change
,editable
,error
to respectivelyonChange
,onEditable
, andonError
. Old options are still working and give a deprecation warning. - Colors of values are now customizable using CSS.
- โ JSONEditor new throws a warning in the console in case of unknown options.
- ๐ Fixed #93 and #227: html codes like
&
not escaped. - ๐ Fixed #149: Memory leak when switching mode from/to
code
mode, web worker of Ace editor wasn't cleaned up. - ๐ Fixed #234: Remove dependency on a fork of the
jsonlint
project on github. - ๐ Fixed: disabled
Ctrl+L
quick key to go to a line, instead use the default browser behavior of selecting the address bar. - ๐ Fixed #38: clear search results after a new JSON object is set.
- ๐ Fixed #242: row stays highlighted when dragging outside editor.
- ๐ Fixed quick-keys Shift+Alt+Arrows not registering actions in history.
- ๐ Fixed #104: context menus are now positioned relative to the elements of the editor instead of an absolute position in the window.
-
v4.2.1 Changes
June 13, 2015- ๐ Fixed #161: Cannot select text in Ace editor on systems using Chinese fonts.
-
v4.2.0 Changes
May 14, 2015- Implemented option
theme
, allowing to set a custom theme for the Ace editor. Thanks @nfvs. - Implemented option
ace
, which allows to pass a custom instance of the Ace instead of the embedded version. - ๐ Fixed #186: binding issue to
jsonlint.parse
. - ๐ Fixed
editor.get()
manipulating the code when containing an error.
- Implemented option