mirror of https://github.com/espruino/BangleApps
Update metadata and README
parent
2c9939578e
commit
ec7125c7dd
|
@ -3,3 +3,4 @@
|
||||||
0.03: Allow partly importing Amazfit decompiler formatted watchfaces
|
0.03: Allow partly importing Amazfit decompiler formatted watchfaces
|
||||||
0.04: Allow writing all image data to separate file to save some RAM
|
0.04: Allow writing all image data to separate file to save some RAM
|
||||||
Allow hiding elements on lock
|
Allow hiding elements on lock
|
||||||
|
0.05: Add precompilation to js for performance
|
||||||
|
|
|
@ -100,7 +100,7 @@ The `Value` field is one of the implemented numerical values.
|
||||||
|
|
||||||
##### Number
|
##### Number
|
||||||
|
|
||||||
Can bottom right, or top left aligned. Will currently force all numbers to
|
Can be aligned to bottom left, top left, bottom right, top right and center. Will currently force all numbers to
|
||||||
be integer.
|
be integer.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -215,6 +215,8 @@ Container names can be everything but other object names.
|
||||||
* SecondAnalog
|
* SecondAnalog
|
||||||
* SecondTens
|
* SecondTens
|
||||||
* SecondOnes
|
* SecondOnes
|
||||||
|
* WeekDay
|
||||||
|
* WeekDayMondayFirst
|
||||||
* Day
|
* Day
|
||||||
* DayTens
|
* DayTens
|
||||||
* DayOnes
|
* DayOnes
|
||||||
|
@ -228,6 +230,7 @@ Container names can be everything but other object names.
|
||||||
* Altitude
|
* Altitude
|
||||||
* BatteryPercentage
|
* BatteryPercentage
|
||||||
* BatteryVoltage
|
* BatteryVoltage
|
||||||
|
* StepsGoal
|
||||||
* WeatherCode
|
* WeatherCode
|
||||||
* WeatherTemperature
|
* WeatherTemperature
|
||||||
|
|
||||||
|
@ -243,8 +246,12 @@ Container names can be everything but other object names.
|
||||||
* Barometer
|
* Barometer
|
||||||
* Compass
|
* Compass
|
||||||
* GPS
|
* GPS
|
||||||
|
* StepsGoal
|
||||||
|
* WeatherTemperatureNegative
|
||||||
* on/off/vibrate
|
* on/off/vibrate
|
||||||
* Notifications
|
* Notifications
|
||||||
|
* celsius/fahrenheit/unknown
|
||||||
|
* WeatherTemperatureUnit
|
||||||
|
|
||||||
### info.json
|
### info.json
|
||||||
|
|
||||||
|
@ -253,14 +260,13 @@ stored on the watch
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
|
|
||||||
* Handle events and redraws better, actually hit minutes/seconds for redraw
|
* Handle events and redraws better
|
||||||
* Performance improvements
|
* Performance improvements
|
||||||
* Mark elements with how often they need to be redrawn
|
* Mark elements with how often they need to be redrawn
|
||||||
* Use less RAM (maybe dedicated parser for JSON working on a stack/queue)
|
* Drawing to buffers and compositing later
|
||||||
* Allow watchfaces to declare if the want to show widgets
|
* Allow watchfaces to declare if the want to show widgets
|
||||||
* Temporarily show widgets with slide up/down
|
* Temporarily show widgets with slide up/down
|
||||||
* Finalize the file format
|
* Finalize the file format
|
||||||
* Allow additional files for upload declared in info.json
|
|
||||||
* Settings
|
* Settings
|
||||||
* Localization
|
* Localization
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "imageclock",
|
"id": "imageclock",
|
||||||
"name": "Imageclock",
|
"name": "Imageclock",
|
||||||
"shortName": "imageclock",
|
"shortName": "imageclock",
|
||||||
"version": "0.04",
|
"version": "0.05",
|
||||||
"type": "clock",
|
"type": "clock",
|
||||||
"description": "BETA!!! File formats still subject to change --- This app is a highly customizable watchface. To use it, you need to select a watchface. You can build the watchfaces yourself without programming anything. All you need to do is write some json and create image files.",
|
"description": "BETA!!! File formats still subject to change --- This app is a highly customizable watchface. To use it, you need to select a watchface. You can build the watchfaces yourself without programming anything. All you need to do is write some json and create image files.",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
|
|
Loading…
Reference in New Issue