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
## 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
- Implemented a function `focus()` for modes tree, view, and form.

View File

@ -1,6 +1,6 @@
{
"name": "jsoneditor",
"version": "4.1.0",
"version": "4.1.2",
"description": "A web-based tool to view, edit and format JSON",
"tags": [
"json",
@ -23,13 +23,11 @@
"node_modules",
"test",
"tools",
".idea",
"gulpfile.js",
"index.js",
"package.json",
"npm-debug.log",
".idea",
".npmignore",
".gitignore",
"npm-debug.log"
".gitignore"
],
"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
var pkg = 'jsoneditor-' + require('./package.json').version + '.zip';
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`)

View File

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