Released version 4.1.2

This commit is contained in:
jos 2015-03-15 15:31:50 +01:00
parent 45b1941f95
commit 6310063494
7 changed files with 734 additions and 726 deletions

View File

@ -3,6 +3,16 @@
https://github.com/josdejong/jsoneditor https://github.com/josdejong/jsoneditor
## 2015-03-15, version 4.1.2
- Fixed broken bower package 4.1.1.
## 2015-03-15, version 4.1.1
- Added missing file `index.js` to the bower package.
## 2015-03-15, version 4.1.0 ## 2015-03-15, version 4.1.0
- Implemented a function `focus()` for modes tree, view, and form. - Implemented a function `focus()` for modes tree, view, and form.

View File

@ -1,6 +1,6 @@
{ {
"name": "jsoneditor", "name": "jsoneditor",
"version": "4.1.0", "version": "4.1.2",
"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",
@ -23,13 +23,11 @@
"node_modules", "node_modules",
"test", "test",
"tools", "tools",
".idea",
"gulpfile.js", "gulpfile.js",
"index.js", "npm-debug.log",
"package.json", ".idea",
".npmignore", ".npmignore",
".gitignore", ".gitignore"
"npm-debug.log"
], ],
"dependencies": {} "dependencies": {}
} }

1420
dist/jsoneditor.js vendored

File diff suppressed because it is too large Load Diff

2
dist/jsoneditor.map vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -115,7 +115,7 @@ gulp.task('minify', ['bundle'], function () {
// TODO: zip file using archiver // TODO: zip file using archiver
var pkg = 'jsoneditor-' + require('./package.json').version + '.zip'; var pkg = 'jsoneditor-' + require('./package.json').version + '.zip';
gulp.task('zip', shell.task([ gulp.task('zip', shell.task([
'zip ' + pkg + ' ' + 'README.md NOTICE LICENSE HISTORY.md dist docs examples -r ' 'zip ' + pkg + ' ' + 'README.md NOTICE LICENSE HISTORY.md index.html src dist docs examples -r '
])); ]));
// The default task (called when you run `gulp`) // The default task (called when you run `gulp`)

View File

@ -1,6 +1,6 @@
{ {
"name": "jsoneditor", "name": "jsoneditor",
"version": "4.1.0", "version": "4.1.2",
"main": "./index", "main": "./index",
"description": "A web-based tool to view, edit and format JSON", "description": "A web-based tool to view, edit and format JSON",
"tags": [ "tags": [