From: Robert Kaiser Date: Sat, 24 Nov 2012 18:06:26 +0000 (+0100) Subject: add a number of support files, including app cache and web app manifest X-Git-Tag: production~41 X-Git-Url: https://git-public.kairo.at/?p=tricorder.git;a=commitdiff_plain;h=4d78e16847313268cf82208b000533d756b5ac41 add a number of support files, including app cache and web app manifest --- diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..802ba10 --- /dev/null +++ b/LICENSE @@ -0,0 +1,5 @@ +This project is subject to the terms of the Mozilla Public License, v. 2.0 +(MPL2). +MPL2 applies per file so there is a license boilerplate in every file pointing +to the license. +See http://mozilla.org/MPL/2.0/. \ No newline at end of file diff --git a/README b/README new file mode 100644 index 0000000..36cb62b --- /dev/null +++ b/README @@ -0,0 +1,12 @@ +This web app shows data from device sensors in the style of a Starfleet +Tricorder with LCARS interface as seen in the popluar Star Trek series and +movies. + +This app is destined to be listed in the Firefox Marketplace, +but not developed far enough yet. + +The main repo is http://git-public.kairo.at/?p=tricorder.git;a=summary but it's +listed on GitHub at https://github.com/KaiRo-at/tricorder for convenience for +potential contributors. See the TODO for tasks that you can help with. + +Please don't use GitHub for issue tracking but http://bugzilla.kairo.at/ diff --git a/TODO b/TODO new file mode 100644 index 0000000..b832030 --- /dev/null +++ b/TODO @@ -0,0 +1,4 @@ +Tasks to complete for Web Tricorder: + +* Make more sensors work +* Make output more beautiful diff --git a/manifest.appcache b/manifest.appcache new file mode 100644 index 0000000..39374be --- /dev/null +++ b/manifest.appcache @@ -0,0 +1,17 @@ +CACHE MANIFEST + +# 2012-11-24 +manifest.webapp +js/tricorder.js +style/tricorder.css +style/DejaVuSansCondensed.ttf +style/DejaVuSansCondensed-Bold.ttf +style/tilex16.png +style/tilex32.png +style/tilex48.png +style/tilex64.png +style/tilex128.png +style/tilexborder.png + +NETWORK: +* diff --git a/manifest.webapp b/manifest.webapp new file mode 100644 index 0000000..b0661a8 --- /dev/null +++ b/manifest.webapp @@ -0,0 +1,16 @@ +{ + "name": "Tricorder", + "description": "Display data from your device sensors in Star Trek style.", + "launch_path": "/index.html", + "developer": { + "name": "Robert Kaiser", + "url": "http://www.kairo.at/" + }, + "icons": { + "16": "/style/tilex16.png", + "32": "/style/tilex32.png", + "48": "/style/tilex48.png", + "64": "/style/tilex64.png", + "128": "/style/tilex128.png" + } +} \ No newline at end of file diff --git a/style/tilex128.png b/style/tilex128.png new file mode 100644 index 0000000..4b22914 Binary files /dev/null and b/style/tilex128.png differ diff --git a/style/tilex16.png b/style/tilex16.png new file mode 100644 index 0000000..d492a2d Binary files /dev/null and b/style/tilex16.png differ diff --git a/style/tilex32.png b/style/tilex32.png index d4027db..83dc0ca 100644 Binary files a/style/tilex32.png and b/style/tilex32.png differ diff --git a/style/tilex48.png b/style/tilex48.png new file mode 100644 index 0000000..0561259 Binary files /dev/null and b/style/tilex48.png differ diff --git a/style/tilex64.png b/style/tilex64.png new file mode 100644 index 0000000..2463f4f Binary files /dev/null and b/style/tilex64.png differ