Released version 4.2.0
This commit is contained in:
parent
8a574995ff
commit
755190417c
|
@ -3,7 +3,7 @@
|
|||
https://github.com/josdejong/jsoneditor
|
||||
|
||||
|
||||
## not yet released, version 4.2.0
|
||||
## 2015-05-14, version 4.2.0
|
||||
|
||||
- Implemented option `theme`, allowing to set a custom theme for the Ace
|
||||
editor. Thanks @nfvs.
|
||||
|
@ -12,6 +12,7 @@ https://github.com/josdejong/jsoneditor
|
|||
- Fixed #186: binding issue to `jsonlint.parse`.
|
||||
- Fixed `editor.get()` manipulating the code when containing an error.
|
||||
|
||||
|
||||
## 2015-03-15, version 4.1.1
|
||||
|
||||
- Added missing file `index.js` to the bower package.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "4.1.3",
|
||||
"version": "4.2.0",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
"json",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2,6 +2,8 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>JSONEditor | Switch mode</title>
|
||||
|
||||
<!-- when using the mode "code", it's important to specify charset utf-8 -->
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||
|
||||
<link href="../dist/jsoneditor.css" rel="stylesheet" type="text/css">
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "4.1.3",
|
||||
"version": "4.2.0",
|
||||
"main": "./index",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
|
|
Loading…
Reference in New Issue