forked from FOSS/BangleApps
Adds readme file
parent
f9001e1969
commit
80e5eff3bd
|
@ -0,0 +1,49 @@
|
||||||
|
# Imageclock
|
||||||
|
|
||||||
|
This app is a highly customizable watchface. To use it, you need to select
|
||||||
|
a watchface from another source.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Choose the folder which contains the watchface, then clock "Upload to watch".
|
||||||
|
|
||||||
|
## Design watch faces
|
||||||
|
|
||||||
|
### Folder structure
|
||||||
|
|
||||||
|
|
||||||
|
* watchfacename
|
||||||
|
* resources/
|
||||||
|
* face.json
|
||||||
|
* info.json
|
||||||
|
|
||||||
|
|
||||||
|
#### resources
|
||||||
|
|
||||||
|
This folder contains image files. It can have subfolders. These files will
|
||||||
|
be read and converted into a resource bundle used by the clock
|
||||||
|
|
||||||
|
#### face.json
|
||||||
|
|
||||||
|
This file contains the description of the watch face elements.
|
||||||
|
|
||||||
|
#### info.json
|
||||||
|
|
||||||
|
This file contains information for the conversion process, it will not be
|
||||||
|
stored on the watch
|
||||||
|
|
||||||
|
## TODO
|
||||||
|
|
||||||
|
* Performance improvements
|
||||||
|
* Mark elements with how often they need to be redrawn
|
||||||
|
* Use less RAM (maybe dedicated parser for JSON working on a stack/queue)
|
||||||
|
* Allow watchfaces to declare if the want to show widgets
|
||||||
|
* Temporarily show widgets with slide up/down
|
||||||
|
* Analog Hands?
|
||||||
|
* Finalize the file format
|
||||||
|
* Description of the file format
|
||||||
|
* Allow additional files for upload declared in info.json
|
||||||
|
|
||||||
|
## Creator
|
||||||
|
|
||||||
|
[halemmerich](https://github.com/halemmerich)
|
|
@ -10,6 +10,7 @@
|
||||||
"supports": ["BANGLEJS2"],
|
"supports": ["BANGLEJS2"],
|
||||||
"custom": "custom.html",
|
"custom": "custom.html",
|
||||||
"customConnect": false,
|
"customConnect": false,
|
||||||
|
"readme": "README.md",
|
||||||
"storage": [
|
"storage": [
|
||||||
{"name":"imageclock.app.js","url":"app.js"},
|
{"name":"imageclock.app.js","url":"app.js"},
|
||||||
{"name":"imageclock.img","url":"app-icon.js","evaluate":true}
|
{"name":"imageclock.img","url":"app-icon.js","evaluate":true}
|
||||||
|
|
Loading…
Reference in New Issue