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
|
||||
|
||||
|
||||
## 2013-09-26, version 2.3.2
|
||||
|
||||
- The web application is now available offline. Thanks ayanamist.
|
||||
|
||||
|
||||
## 2013-09-24, version 2.3.1
|
||||
|
||||
- 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('./LICENSE', webApp);
|
||||
jake.cpR('./LICENSE', webApp);
|
||||
jake.cpR(webAppSrc + 'cache.manifest', webApp);
|
||||
jake.cpR(webAppSrc + 'robots.txt', webApp);
|
||||
jake.cpR(webAppSrc + 'datapolicy.txt', webApp);
|
||||
jake.cpR(webAppSrc + 'index.html', webApp);
|
||||
|
@ -239,6 +240,7 @@ task('webapp', ['build', 'minify'], function () {
|
|||
// update date and verison in index.html
|
||||
replacePlaceholders(webApp + 'index.html');
|
||||
replacePlaceholders(webApp + 'index.html'); // TODO: fix bug in replace, should replace all occurrences
|
||||
replacePlaceholders(webApp + 'cache.manifest');
|
||||
|
||||
// concatenate and copy ace files
|
||||
concat({
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
"128": "icon_128.png"
|
||||
},
|
||||
"permissions": [
|
||||
"unlimitedStorage"
|
||||
],
|
||||
"offline_enabled": false
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
CACHE MANIFEST
|
||||
#Version 2.3.1
|
||||
#Version @@version
|
||||
|
||||
CACHE:
|
||||
favicon.ico
|
||||
|
@ -26,3 +26,6 @@ doc/img/splitter.png
|
|||
doc/index.html
|
||||
doc/doc.css
|
||||
|
||||
# always load online resources like ads
|
||||
NETWORK:
|
||||
*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "2.3.1",
|
||||
"version": "2.3.2",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
"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
|
||||
*
|
||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||
* @version 2.3.1
|
||||
* @date 2013-09-24
|
||||
* @version 2.3.2
|
||||
* @date 2013-09-26
|
||||
*/
|
||||
(function () {
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "2.3.1",
|
||||
"version": "2.3.2",
|
||||
"main": "jsoneditor.js",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
|
|
Loading…
Reference in New Issue