Merge pull request #2139 from thyttan/about

[About] Bangle2 add software back button via setUI
pull/2143/head^2
Gordon Williams 2022-09-23 08:42:05 +01:00 committed by GitHub
commit 3de310463a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -10,3 +10,4 @@
0.10: Added separate Bangle.js 2 file with Bangle.js 2 kickstarter pixels (as of 28 Oct 2021) 0.10: Added separate Bangle.js 2 file with Bangle.js 2 kickstarter pixels (as of 28 Oct 2021)
0.11: Bangle.js2: New pixels, btn1 to exit 0.11: Bangle.js2: New pixels, btn1 to exit
0.12: Actual pixels as of 29th Nov 2021 0.12: Actual pixels as of 29th Nov 2021
0.13: Bangle.js 2: Use setUI to add software back button

View File

@ -69,4 +69,8 @@ function drawImage() {
// TODO: a nice little animation before // TODO: a nice little animation before
setTimeout(drawInfo, 1000); setTimeout(drawInfo, 1000);
setWatch(_=>load(), BTN1); Bangle.setUI({
mode : "custom",
back : load,
btn : load
});

View File

@ -1,7 +1,7 @@
{ {
"id": "about", "id": "about",
"name": "About", "name": "About",
"version": "0.12", "version": "0.13",
"description": "Bangle.js About page - showing software version, stats, and a collaborative mural from the Bangle.js KickStarter backers", "description": "Bangle.js About page - showing software version, stats, and a collaborative mural from the Bangle.js KickStarter backers",
"icon": "app.png", "icon": "app.png",
"tags": "tool,system", "tags": "tool,system",