diff --git a/package.json b/package.json index 9435aa7..8df3b19 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "health" ], "displayName": "Squared 4.0", - "enableMultiJS": false, + "enableMultiJS": true, "messageKeys": { "background_color": 4, "backlight": 17, @@ -39,7 +39,15 @@ }, "projectType": "native", "resources": { - "media": [] + "media": [ + { + "file": "images/menuicon.png", + "menuIcon": true, + "name": "MENU_ICON", + "targetPlatforms": null, + "type": "bitmap" + } + ] }, "sdkVersion": "3", "targetPlatforms": [ diff --git a/resources/images/menuicon~bw.png b/resources/images/menuicon~bw.png new file mode 100644 index 0000000..2a8ee73 Binary files /dev/null and b/resources/images/menuicon~bw.png differ diff --git a/resources/images/menuicon~color.png b/resources/images/menuicon~color.png new file mode 100644 index 0000000..132ff97 Binary files /dev/null and b/resources/images/menuicon~color.png differ diff --git a/src/c/squared.c b/src/c/squared.c index c0188e3..051f6c0 100644 --- a/src/c/squared.c +++ b/src/c/squared.c @@ -1706,9 +1706,9 @@ static void init() { .quick_start = false, .leading_zero = false, .background_color = 0b11000000, - .number_base_color = 0b11001010, - .number_variation = true, - .ornament_base_color = 0b11100010, + .number_base_color = 0b11111111, + .number_variation = false, + .ornament_base_color = 0b11001010, .ornament_variation = true, .invert = false, .monochrome = true, diff --git a/src/pkjs/pebble-app.js b/src/pkjs/app.js similarity index 100% rename from src/pkjs/pebble-app.js rename to src/pkjs/app.js