All Versions
224
Latest Version
Avg Release Cycle
22 days
Latest Release
546 days ago

Changelog History
Page 19

  • v4.1.1 Changes

    March 15, 2015
    • โž• Added missing file index.js to the bower package.
  • v4.1.0 Changes

    March 15, 2015
    • Implemented a function focus() for modes tree, view, and form.
    • โž• Added ./src folder to the distributed package, needed for usage via node.js/browserify.
  • v4.0.0 Changes

    February 28, 2015
    • ๐Ÿ‘• Ace editor and jsonlint are now packed with jsoneditor.js by default. This makes the library about 4 times larger. If Ace is not needed, a custom build of the library can be done.
    • ๐Ÿšš The distribution files are now moved from the root to the /dist folder.
    • Reworked the source code to CommonJS modules, using brace to load Ace.
    • JSONP is now automatically stripped from JSON. Thanks @yanivefraim.
    • ๐Ÿ›  Fixed bugs in the JSON sanitizer, no longer manipulating JSON-like structures inside strings.
  • v3.2.0 Changes

    January 25, 2015
    • Implemented shortcut keys Ctrl+\ to format and Ctrl+Shift+\ to compact JSON when in mode text or code.
    • Before an error is thrown because of invalid text, the editor first tries to sanitize the text (replace JavaScript notation with JSON notation), and only after that throws the error.
    • ๐Ÿ›  Fixed Node.path() not working for a JSON Object "". Thanks @tomalec.
    • Minor styling improvements.
    • ๐Ÿ›  Fixed configured indentation not being applied to Ace editor.
  • v3.1.2 Changes

    September 03, 2014
    • ๐Ÿ“œ Some fixes/improvements in parseJS (to parse a JSON object from a JavaScript object).
    • ๐Ÿ›  Fixed the lack of a semi colon at end of the bundled files.
  • v3.1.1 Changes

    August 01, 2014
    • ๐Ÿ“œ Replaced parsing of JavaScript objects into JSON from eval to a dedicated parseJS function.
  • v3.1.0 Changes

    July 28, 2014
    • JSONEditor now accepts JavaScript objects as input, and can turn them into valid JSON. For example {a:2,b:'str'} can be turned into {"a":2,"b":"str"}.
    • Implemented an option editable, a callback function, which allows to set individual nodes (their field and/or value) editable or read-only.
    • ๐Ÿ›  Fixed: shortcut keys to manipulate the nodes are now disabled when mode is form or view.
  • v3.0.0 Changes

    May 31, 2014
    • Large code reorganization.
    • Editor must be loaded as new JSONEditor(...) instead of new jsoneditor.JSONEditor(...).
    • Css is not automatically loaded anymore when using AMD.
    • ๐Ÿšš Web application has been moved to another project.
  • v2.3.6 Changes

    January 03, 2014
    • ๐Ÿ›  Fixed positioning issue of the action menu.
  • v2.3.5 Changes

    December 09, 2013
    • ๐Ÿ›  Fixed a positioning issue of the action menu again.
    • ๐Ÿ›  Fixed an issue with non-breaking space characters.