Merge pull request #1001 from alainsaas/master
Speech Timer v1.01 (minor UI improvement, app name updated as per Gordon's request)master
commit
bf8f32eabb
|
|
@ -4593,9 +4593,9 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id":"a_speech_timer",
|
"id":"a_speech_timer",
|
||||||
"name":"A Speech Timer",
|
"name":"Speech Timer",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"version":"1.00",
|
"version":"1.01",
|
||||||
"description": "A timer designed to help keeping your speeches and presentations to time.",
|
"description": "A timer designed to help keeping your speeches and presentations to time.",
|
||||||
"tags": "tool,timer",
|
"tags": "tool,timer",
|
||||||
"readme":"README.md",
|
"readme":"README.md",
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
1.00: Release (2021/12/01)
|
1.00: Release (2021/12/01)
|
||||||
|
1.01: Grey font when timer is frozen (2021/12/04)
|
||||||
|
|
|
||||||
|
|
@ -134,11 +134,11 @@ function draw() {
|
||||||
else if (current_value >= current_from) { g.setBgColor("#8F8"); }
|
else if (current_value >= current_from) { g.setBgColor("#8F8"); }
|
||||||
g.clearRect(0,24,176,176);
|
g.clearRect(0,24,176,176);
|
||||||
|
|
||||||
g.reset();
|
g.reset().setFontAlign(0, 0).setColor(istimeron ? "#000" : "#444");
|
||||||
g.setFontAlign(0, 0);
|
|
||||||
|
|
||||||
g.setFont("Michroma36").drawString(timeToString(current_value), 88, 62);
|
g.setFont("Michroma36").drawString(timeToString(current_value), 88, 62);
|
||||||
|
|
||||||
|
g.reset().setFontAlign(0, 0);
|
||||||
|
|
||||||
g.setFont("HaxorNarrow7x17");
|
g.setFont("HaxorNarrow7x17");
|
||||||
g.drawString(timeToString(current_from), 44, 62+26);
|
g.drawString(timeToString(current_from), 44, 62+26);
|
||||||
g.drawString(timeToString(current_mid), 88, 62+26);
|
g.drawString(timeToString(current_mid), 88, 62+26);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue