diff --git a/apps/fuzzyw/ChangeLog b/apps/fuzzyw/ChangeLog new file mode 100644 index 000000000..7b83706bf --- /dev/null +++ b/apps/fuzzyw/ChangeLog @@ -0,0 +1 @@ +0.01: First release diff --git a/apps/fuzzyw/README.md b/apps/fuzzyw/README.md new file mode 100644 index 000000000..1b5f2b8e8 --- /dev/null +++ b/apps/fuzzyw/README.md @@ -0,0 +1,15 @@ +# Fuzzy Text Clock + +An inaccurate clock for when you're not in a rush. + +This clock is a remake of one of my favourite Pebble watchfaces, Fuzzy Text International. I use this watch for weekends and holidays, when 'within 5 minutes of the actual time' is close enough! + +## TODO +* Other languages (currently only uk style time, could tie into the Languages app) +* Bold hour word + +## References +Based on Pebble app Fuzzy Text International: https://github.com/hallettj/Fuzzy-Text-International + +![](fuzzyw-light.png) +![](fuzzyw-dark.png) diff --git a/apps/fuzzyw/fuzzy.png b/apps/fuzzyw/fuzzy.png new file mode 100644 index 000000000..125265aea Binary files /dev/null and b/apps/fuzzyw/fuzzy.png differ diff --git a/apps/fuzzyw/fuzzyw-dark.png b/apps/fuzzyw/fuzzyw-dark.png new file mode 100644 index 000000000..88220e5c7 Binary files /dev/null and b/apps/fuzzyw/fuzzyw-dark.png differ diff --git a/apps/fuzzyw/fuzzyw-light.png b/apps/fuzzyw/fuzzyw-light.png new file mode 100644 index 000000000..5383e08a4 Binary files /dev/null and b/apps/fuzzyw/fuzzyw-light.png differ diff --git a/apps/fuzzyw/fuzzyw.icon.js b/apps/fuzzyw/fuzzyw.icon.js new file mode 100644 index 000000000..48750da61 --- /dev/null +++ b/apps/fuzzyw/fuzzyw.icon.js @@ -0,0 +1 @@ +require("heatshrink").decompress(atob("AH4AthMkyVJARIR5AH4AKKw+ACPwA/AAj7jCMYA/ABT7jCMYA/AAj7jCMYA/AFI=")) diff --git a/apps/fuzzyw/metadata.json b/apps/fuzzyw/metadata.json new file mode 100644 index 000000000..56ed896a8 --- /dev/null +++ b/apps/fuzzyw/metadata.json @@ -0,0 +1,19 @@ +{ + "id":"fuzzyw", + "name":"Fuzzy Text Clock", + "shortName": "Fuzzy Text", + "version": "0.01", + "description": "An inaccurate clock for when you're not in a rush", + "readme": "README.md", + "icon":"fuzzyw.png", + "screenshots": [{"url":"fuzzyw_light.png"},{"url":"fuzzyw_dark.png"}], + "type": "clock", + "tags": "clock", + "supports": ["BANGLEJS", "BANGLEJS2"], + "allow_emulator": true, + "storage": [ + {"name":"fuzzyw.app.js","url":"fuzzyw.app.js"}, + {"name":"fuzzyw.settings.js","url":"fuzzyw.settings.js"}, + {"name":"fuzzyw.img","url":"fuzzyw.icon.js","evaluate":true} + ] +}