Released version 3.2.0
This commit is contained in:
parent
3f6f5d2a70
commit
376fc272ce
|
@ -3,7 +3,7 @@
|
||||||
https://github.com/josdejong/jsoneditor
|
https://github.com/josdejong/jsoneditor
|
||||||
|
|
||||||
|
|
||||||
## not yet released, version 3.2.0
|
## 2015-01-25, version 3.2.0
|
||||||
|
|
||||||
- Implemented shortcut keys `Ctrl+\` to format and `Ctrl+Shift+\` to compact
|
- Implemented shortcut keys `Ctrl+\` to format and `Ctrl+Shift+\` to compact
|
||||||
JSON when in mode `text` or `code`.
|
JSON when in mode `text` or `code`.
|
||||||
|
|
2
NOTICE
2
NOTICE
|
@ -1,7 +1,7 @@
|
||||||
JSON Editor
|
JSON Editor
|
||||||
https://github.com/josdejong/jsoneditor
|
https://github.com/josdejong/jsoneditor
|
||||||
|
|
||||||
Copyright (C) 2011-2014 Jos de Jong
|
Copyright (C) 2011-2015 Jos de Jong
|
||||||
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "3.1.3-SNAPSHOT",
|
"version": "3.2.0",
|
||||||
"description": "A web-based tool to view, edit and format JSON",
|
"description": "A web-based tool to view, edit and format JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
"json",
|
"json",
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
},
|
},
|
||||||
"main": [
|
"main": [
|
||||||
"jsoneditor.min.js",
|
"jsoneditor.min.js",
|
||||||
"jsoneditor.css"
|
"jsoneditor.min.css"
|
||||||
],
|
],
|
||||||
"bugs": "https://github.com/josdejong/jsoneditor/issues",
|
"bugs": "https://github.com/josdejong/jsoneditor/issues",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
|
|
|
@ -20,10 +20,10 @@
|
||||||
* License for the specific language governing permissions and limitations under
|
* License for the specific language governing permissions and limitations under
|
||||||
* the License.
|
* the License.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2014 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2015 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 3.1.3-SNAPSHOT
|
* @version 3.2.0
|
||||||
* @date 2015-01-25
|
* @date 2015-01-25
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "3.1.3-SNAPSHOT",
|
"version": "3.2.0",
|
||||||
"main": "jsoneditor.js",
|
"main": "jsoneditor.js",
|
||||||
"description": "A web-based tool to view, edit and format JSON",
|
"description": "A web-based tool to view, edit and format JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* License for the specific language governing permissions and limitations under
|
* License for the specific language governing permissions and limitations under
|
||||||
* the License.
|
* the License.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2014 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2015 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version @@version
|
* @version @@version
|
||||||
|
|
Loading…
Reference in New Issue