commit 565cc0c9d21fb3af67ac77e3a169442883ffd9c5
parent 568e7ae7f6ba711780c5972b1c1f1213778e052c
Author: Natasha Kerensikova <natacha@instinctive.eu>
Date: Tue, 24 Nov 2015 21:42:05 +0000
Add basic infrastructure to the project
Diffstat:
5 files changed, 50 insertions(+), 0 deletions(-)
diff --git a/.fossil-settings/ignore-glob b/.fossil-settings/ignore-glob
@@ -0,0 +1,3 @@
+build/*
+.lock-waf*
+wscript
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,7 @@
+wscript
+
+# Ignore build generated files
+build
+
+# Ignore waf lock file
+.lock-waf*
diff --git a/LICENSE b/LICENSE
@@ -0,0 +1,14 @@
+Copyright (c) 2015, Natacha Porté
+Face design by Łukasz Zalewski
+
+Permission to use, copy, modify, and distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/README.md b/README.md
@@ -0,0 +1,11 @@
+# Classic Lite
+
+This project is a software face for [Pebble](//pebble.com/) smart watches.
+It is a minimalistic rewrite of [Classic][] by Łukasz Zalewski and
+reproduced with his permission.
+
+[Classic]: //apps.getpebble.com/en_US/application/52ca20c86e3cc2bc7d00003c
+
+This rewrite adds support for newer platforms (Pebble Time and Pebble Time
+Round) and aims to maximize battery life, even though the original was
+already very good in that regard.
diff --git a/appinfo.json b/appinfo.json
@@ -0,0 +1,15 @@
+{
+ "uuid": "5a03163f-924b-468d-9f2b-bfdd7310a7bf",
+ "shortName": "Classic Lite",
+ "longName": "Classic Lite",
+ "companyName": "Natasha Kerensikova",
+ "versionLabel": "1.0",
+ "sdkVersion": "3",
+ "targetPlatforms": ["aplite", "basalt", "chalk"],
+ "watchapp": {
+ "watchface": true
+ },
+ "resources": {
+ "media": []
+ }
+}