Released version 2.3.2 with offline available web app.
This commit is contained in:
parent
80b0e2cb9a
commit
347867837e
|
@ -3,6 +3,11 @@
|
||||||
http://jsoneditoronline.org
|
http://jsoneditoronline.org
|
||||||
|
|
||||||
|
|
||||||
|
## 2013-09-26, version 2.3.2
|
||||||
|
|
||||||
|
- The web application is now available offline. Thanks ayanamist.
|
||||||
|
|
||||||
|
|
||||||
## 2013-09-24, version 2.3.1
|
## 2013-09-24, version 2.3.1
|
||||||
|
|
||||||
- Fixed non-working action menu when in bootstrap modal (z-index issue).
|
- Fixed non-working action menu when in bootstrap modal (z-index issue).
|
||||||
|
|
|
@ -226,6 +226,7 @@ task('webapp', ['build', 'minify'], function () {
|
||||||
jake.cpR('./NOTICE', webApp);
|
jake.cpR('./NOTICE', webApp);
|
||||||
jake.cpR('./LICENSE', webApp);
|
jake.cpR('./LICENSE', webApp);
|
||||||
jake.cpR('./LICENSE', webApp);
|
jake.cpR('./LICENSE', webApp);
|
||||||
|
jake.cpR(webAppSrc + 'cache.manifest', webApp);
|
||||||
jake.cpR(webAppSrc + 'robots.txt', webApp);
|
jake.cpR(webAppSrc + 'robots.txt', webApp);
|
||||||
jake.cpR(webAppSrc + 'datapolicy.txt', webApp);
|
jake.cpR(webAppSrc + 'datapolicy.txt', webApp);
|
||||||
jake.cpR(webAppSrc + 'index.html', webApp);
|
jake.cpR(webAppSrc + 'index.html', webApp);
|
||||||
|
@ -239,6 +240,7 @@ task('webapp', ['build', 'minify'], function () {
|
||||||
// update date and verison in index.html
|
// update date and verison in index.html
|
||||||
replacePlaceholders(webApp + 'index.html');
|
replacePlaceholders(webApp + 'index.html');
|
||||||
replacePlaceholders(webApp + 'index.html'); // TODO: fix bug in replace, should replace all occurrences
|
replacePlaceholders(webApp + 'index.html'); // TODO: fix bug in replace, should replace all occurrences
|
||||||
|
replacePlaceholders(webApp + 'cache.manifest');
|
||||||
|
|
||||||
// concatenate and copy ace files
|
// concatenate and copy ace files
|
||||||
concat({
|
concat({
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
"128": "icon_128.png"
|
"128": "icon_128.png"
|
||||||
},
|
},
|
||||||
"permissions": [
|
"permissions": [
|
||||||
|
"unlimitedStorage"
|
||||||
],
|
],
|
||||||
"offline_enabled": false
|
"offline_enabled": false
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
CACHE MANIFEST
|
CACHE MANIFEST
|
||||||
#Version 2.3.1
|
#Version @@version
|
||||||
|
|
||||||
CACHE:
|
CACHE:
|
||||||
favicon.ico
|
favicon.ico
|
||||||
|
@ -26,3 +26,6 @@ doc/img/splitter.png
|
||||||
doc/index.html
|
doc/index.html
|
||||||
doc/doc.css
|
doc/doc.css
|
||||||
|
|
||||||
|
# always load online resources like ads
|
||||||
|
NETWORK:
|
||||||
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "2.3.1",
|
"version": "2.3.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",
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -27,8 +27,8 @@
|
||||||
* Copyright (c) 2011-2013 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2013 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 2.3.1
|
* @version 2.3.2
|
||||||
* @date 2013-09-24
|
* @date 2013-09-26
|
||||||
*/
|
*/
|
||||||
(function () {
|
(function () {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "2.3.1",
|
"version": "2.3.2",
|
||||||
"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": [
|
||||||
|
|
Loading…
Reference in New Issue