1
0
Fork 0

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.

master
thyttan 2023-02-25 18:52:29 +01:00
parent 6cd3c02253
commit 09eeac356b
3 changed files with 79 additions and 96 deletions

View File

@ -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

View File

@ -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"
}
]
}