Skip to content

Commit

Permalink
Released version 2.3.2 with offline available web app.
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Sep 26, 2013
1 parent 80b0e2c commit 3478678
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 2 additions & 0 deletions Jakefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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({
Expand Down
1 change: 1 addition & 0 deletions app/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"128": "icon_128.png"
},
"permissions": [
"unlimitedStorage"
],
"offline_enabled": false
}
5 changes: 4 additions & 1 deletion app/web/cache.manifest
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CACHE MANIFEST
#Version 2.3.1
#Version @@version

CACHE:
favicon.ico
Expand All @@ -26,3 +26,6 @@ doc/img/splitter.png
doc/index.html
doc/doc.css

# always load online resources like ads
NETWORK:
*
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions jsoneditor-min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions jsoneditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
* Copyright (c) 2011-2013 Jos de Jong, http://jsoneditoronline.org
*
* @author Jos de Jong, <[email protected]>
* @version 2.3.1
* @date 2013-09-24
* @version 2.3.2
* @date 2013-09-26
*/
(function () {

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down

0 comments on commit 3478678

Please sign in to comment.