Skip to content

Commit 029fbb7

Browse files
author
thyttan
committed
Merge remote-tracking branch 'upstream/master' into app-loader
2 parents 797dc36 + f3655ef commit 029fbb7

36 files changed

+1189
-10
lines changed

apps/clkinfodice/ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.01: New Clock Info!

apps/clkinfodice/clkinfo.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
(function() {
2+
let random = Math.randInt(6);
3+
return {
4+
name: "Bangle",
5+
items: [
6+
{ name : "Dice",
7+
get : function() {
8+
return {
9+
text : (random+1).toString(),
10+
img : [
11+
atob("GBiBAAAAAAAAAAAAAAAAAA//8A//8AwAMAwAMAwAMAwAMAwAMAwYMAwYMAwAMAwAMAwAMAwAMAwAMA//8A//8AAAAAAAAAAAAAAAAA=="),
12+
atob("GBiBAAAAAAAAAAAAAAAAAA//8A//8AwAMAwAMAzAMAzAMAwAMAwAMAwAMAwAMAwDMAwDMAwAMAwAMA//8A//8AAAAAAAAAAAAAAAAA=="),
13+
atob("GBiBAAAAAAAAAAAAAAAAAA//8A//8AwAMAwAMAzAMAzAMAwAMAwYMAwYMAwAMAwDMAwDMAwAMAwAMA//8A//8AAAAAAAAAAAAAAAAA=="),
14+
atob("GBiBAAAAAAAAAAAAAAAAAA//8A//8AwAMAwAMAzDMAzDMAwAMAwAMAwAMAwAMAzDMAzDMAwAMAwAMA//8A//8AAAAAAAAAAAAAAAAA=="),
15+
atob("GBiBAAAAAAAAAAAAAAAAAA//8A//8AwAMAwAMAzDMAzDMAwAMAwYMAwYMAwAMAzDMAzDMAwAMAwAMA//8A//8AAAAAAAAAAAAAAAAA=="),
16+
atob("GBiBAAAAAAAAAAAAAAAAAA//8A//8AwAMAwAMAzDMAzDMAwAMAzDMAzDMAwAMAzDMAzDMAwAMAwAMA//8A//8AAAAAAAAAAAAAAAAA==")
17+
][random]
18+
};
19+
},
20+
show : function() { random = Math.randInt(6); },
21+
hide : function() {},
22+
run : function() { random = Math.randInt(6); this.emit("redraw"); }
23+
}
24+
]
25+
};
26+
})

apps/clkinfodice/icon.png

1.38 KB
Loading

apps/clkinfodice/metadata.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{ "id": "clkinfodice",
2+
"name": "Dice Clockinfo",
3+
"version":"0.01",
4+
"author": "gfwilliams",
5+
"description": "A ClockInfo that shows a random dice face. Tap to roll.",
6+
"icon": "icon.png",
7+
"type": "clkinfo",
8+
"tags": "clkinfo,gaming,game",
9+
"supports" : ["BANGLEJS2"],
10+
"storage": [
11+
{"name":"clkinfodice.clkinfo.js","url":"clkinfo.js"}
12+
]
13+
}

apps/confthyttan/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Thyttan's Default Config
22

3-
A different default set of apps and configurations. Brings many quality of life improvements. Opinionated based on the creators taste. Read more below before installing.
3+
A different default set of apps and configurations. Makes many quality of life changes. Opinionated based on the creators taste. Read more below before installing.
44

55
## Usage
66

apps/confthyttan/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Thyttan's Default Config",
33
"version":"0.08",
44
"author": "thyttan",
5-
"description": "A different default set of apps and configurations. Brings many quality of life improvements. Opinionated based on the creators taste. Read more below before installing.",
5+
"description": "A different default set of apps and configurations. Makes many quality of life changes. Opinionated based on the creators taste. Read more below before installing.",
66
"icon": "app.png",
77
"type": "defaultconfig",
88
"tags": "system,configuration,config,anotherconfig,thyttan,defaultconfig",
-49.8 KB
Binary file not shown.
31.9 KB
Loading

apps/f9lander/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "0.05",
55
"description": "Land a rocket booster by tilting the watch",
66
"icon": "f9lander.png",
7-
"screenshots" : [ { "url":"f9lander_screenshot1.png" }, { "url":"f9lander_screenshot2.png" }, { "url":"f9lander_screenshot3.png" },{ "url":"f9Lander_screenshot4.png" }],
7+
"screenshots" : [ { "url":"f9lander_screenshot1.png" }, { "url":"f9lander_screenshot2.png" }, { "url":"f9lander_screenshot3.png" },{ "url":"f9lander_screenshot4.png" }],
88
"readme": "README.md",
99
"tags": "game",
1010
"supports" : ["BANGLEJS", "BANGLEJS2"],

apps/hidmouse/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Mouse
2+
3+
Connect to a computer, drag the screen to move your mouse. Tap or press the BangleJS2's button to left-click.
4+
5+
Note that HID must be enabled in settings for bluetooth devices to recognise the bangle as a mouse.

0 commit comments

Comments
 (0)