From c7b5edf0351d678d26b17eb5e2f995a140e209bb Mon Sep 17 00:00:00 2001 From: John Mayhew Date: Wed, 8 Feb 2012 14:38:25 -0800 Subject: Added manifest.json, and image file required for being a packaged chrome application. Removed the old versions.json and updated the main page to detect if it is running as a chrome app and retrieve the version info from the chrome.app object. If the app is running hosted, the code will use an XHR to load the manifest.json and retrieve the version number from it directly. --- manifest.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json new file mode 100644 index 00000000..12047172 --- /dev/null +++ b/manifest.json @@ -0,0 +1,25 @@ +{ + "name": "Motorola Ninja", + "description": "Motorola Ninja HTML5 Authoring Tool Pre-Alpha", + "version": "0.5.0.0", + "app": { + "launch": { + "local_path": "index.html" + } + }, + "icons": { + "128": "ninja_icon_128.png" + }, + "permissions": [ + "unlimitedStorage", + "notifications" + ], + "requirements": { + "3D": { + "features": ["css3d", "webgl"] + } + }, + "minimum_chrome_version": "16.0.0.0", + "offline_enabled": true, + "update_url": "http://tetsubo.org/go/ninjaupdate" +} \ No newline at end of file -- cgit v1.2.3