forked from FOSS/BangleApps
Add changes to bwclklite after forking from bwclk. Change custom font to a standard bitmap one. Don't invert theme as this doesn't work very well with fastloading. Do an initial fillRect on the clock info area since it would wait for clock info before drawing out the previous app. Change all occurences of var to let.
parent
6cd3c02253
commit
09eeac356b
|
@ -31,3 +31,7 @@ clkinfo.addInteractive that would cause ReferenceError.
|
|||
0.29: use setItem of clockInfoMenu to change the active item
|
||||
0.30: Use widget_utils
|
||||
0.31: Use clock_info module as an app
|
||||
0.32: Diverge from BW Clock. Change out the custom font for a standard bitmap
|
||||
one to speed up loading times. Remove invertion of theme as this doesn't
|
||||
work very well with fastloading. Do an quick inital fillRect on the
|
||||
clock info area.
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,19 +1,43 @@
|
|||
{
|
||||
"id": "bwclk",
|
||||
"name": "BW Clock",
|
||||
"version": "0.31",
|
||||
"version": "0.32",
|
||||
"description": "A very minimalistic clock.",
|
||||
"readme": "README.md",
|
||||
"icon": "app.png",
|
||||
"screenshots": [{"url":"screenshot.png"}, {"url":"screenshot_2.png"}, {"url":"screenshot_3.png"}],
|
||||
"screenshots": [
|
||||
{
|
||||
"url": "screenshot.png"
|
||||
},
|
||||
{
|
||||
"url": "screenshot_2.png"
|
||||
},
|
||||
{
|
||||
"url": "screenshot_3.png"
|
||||
}
|
||||
],
|
||||
"type": "clock",
|
||||
"tags": "clock,clkinfo",
|
||||
"supports": ["BANGLEJS2"],
|
||||
"dependencies" : { "clock_info":"module" },
|
||||
"supports": [
|
||||
"BANGLEJS2"
|
||||
],
|
||||
"dependencies": {
|
||||
"clock_info": "module"
|
||||
},
|
||||
"allow_emulator": true,
|
||||
"storage": [
|
||||
{"name":"bwclk.app.js","url":"app.js"},
|
||||
{"name":"bwclk.img","url":"app-icon.js","evaluate":true},
|
||||
{"name":"bwclk.settings.js","url":"settings.js"}
|
||||
{
|
||||
"name": "bwclk.app.js",
|
||||
"url": "app.js"
|
||||
},
|
||||
{
|
||||
"name": "bwclk.img",
|
||||
"url": "app-icon.js",
|
||||
"evaluate": true
|
||||
},
|
||||
{
|
||||
"name": "bwclk.settings.js",
|
||||
"url": "settings.js"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue