1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
{
"name": "c64",
"author": "Reiner Herrmann",
"version": "0.1.0",
"keywords": ["pebble-app"],
"private": true,
"dependencies": {},
"pebble": {
"displayName": "C=64",
"uuid": "ca4c3839-9b6d-469a-ba3b-7864b3a1f53c",
"sdkVersion": "3",
"enableMultiJS": false,
"targetPlatforms": [
"aplite",
"basalt",
"diorite",
"emery",
"flint"
],
"watchapp": {
"watchface": true
},
"messageKeys": [
"dummy"
],
"resources": {
"media": [
{
"menuIcon": true,
"type": "png",
"name": "IMAGE_MENU_ICON",
"file": "images/C64-logo.png"
},
{
"characterRegex": "[0-9:]",
"type": "font",
"name": "FONT_COMMODORE_58",
"file": "fonts/BA67.ttf",
"compatibility": "2.8",
"targetPlatforms":[
"emery"
]
},
{
"characterRegex": "[A-Za-z0-9 *.:%]",
"type": "font",
"name": "FONT_COMMODORE_16",
"file": "fonts/BA67.ttf",
"compatibility": "2.8",
"targetPlatforms":[
"emery"
]
},
{
"characterRegex": "[0-9:]",
"type": "font",
"name": "FONT_COMMODORE_48",
"file": "fonts/BA67.ttf",
"compatibility": "2.8",
"targetPlatforms":[
"aplite",
"basalt",
"diorite",
"flint"
]
},
{
"characterRegex": "[A-Za-z0-9 *.:%]",
"type": "font",
"name": "FONT_COMMODORE_15",
"file": "fonts/BA67.ttf",
"compatibility": "2.8",
"targetPlatforms":[
"aplite",
"basalt",
"diorite",
"flint"
]
}
]
}
}
}
|