diff --git a/apps/notanalog/ChangeLog b/apps/notanalog/ChangeLog index aedbeb684..87e65899c 100644 --- a/apps/notanalog/ChangeLog +++ b/apps/notanalog/ChangeLog @@ -1 +1,2 @@ 0.01: Launch app. +0.02: 12k steps are 360 degrees - improves readability of steps. diff --git a/apps/notanalog/README.md b/apps/notanalog/README.md index 22097f0fc..9ca2a621a 100644 --- a/apps/notanalog/README.md +++ b/apps/notanalog/README.md @@ -3,8 +3,8 @@ An analog watch face for people (like me) that can not read analog watch faces. It looks like an analog clock, but its not! It shows the time digital - check the 4 numbers on the watch face ;) -The red hand shows the number of steps (0 = 0°, 2.5k = 90°, 5k = 180°, ...) and the -black one the battery level (100% = 0°, 75% = 270°, 50% = 180°, ...). +The red hand shows the number of steps (12k steps = 360 degrees) and the +black one the battery level (100% = 360 degrees). The selected theme is also respected. Note that this watch face is in fullscreen mode, but widgets are still loaded in background. @@ -14,7 +14,7 @@ mode, but widgets are still loaded in background. - If the battery is charged, the icons will change. - If you have done more than 10k steps, the red hand and icon will turn green. - Shows current lock status of your bangle va a colored dot in the middle. -- Sows symbol if GPS is on. +- Shows symbol if GPS is on. ## Screenshots ![](screenshot_1.png) diff --git a/apps/notanalog/metadata.json b/apps/notanalog/metadata.json index a2ce9260d..183f01f9a 100644 --- a/apps/notanalog/metadata.json +++ b/apps/notanalog/metadata.json @@ -3,7 +3,7 @@ "name": "Not Analog", "shortName":"Not Analog", "icon": "notanalog.png", - "version":"0.1", + "version":"0.02", "readme": "README.md", "supports": ["BANGLEJS2"], "description": "An analog watch face for people that can not read analog watch faces.", diff --git a/apps/notanalog/notanalog.app.js b/apps/notanalog/notanalog.app.js index ad8adfe83..cbe108cea 100644 --- a/apps/notanalog/notanalog.app.js +++ b/apps/notanalog/notanalog.app.js @@ -169,7 +169,7 @@ function drawData() { } // Default are the steps - drawDataHand(parseInt(state.steps*360/state.maxSteps)); + drawDataHand(parseInt(state.steps*360/12000)); } @@ -236,7 +236,6 @@ function handleState(fastUpdate){ // Set steps state.steps = getSteps(); - state.maxSteps = 10000; // Set weather state.has_weather = true; diff --git a/apps/notanalog/notanalog.icon.js b/apps/notanalog/notanalog.icon.js index 390a574ac..2af96aef9 100644 --- a/apps/notanalog/notanalog.icon.js +++ b/apps/notanalog/notanalog.icon.js @@ -1 +1 @@ -require("heatshrink").decompress(atob("mEwwkAxAA/ADWP/AWV/4XVxAXX5/5Iif/xHvF6QXDF6YADF5GHv4lBAAP3hBfOw4VDAAd4F5gWIAAIxFF4wREAxB6EGAZbC5+PAAYZD+woFIozoIJI4uFFogxEIQPwEZLdKaoYJIFxBiEIxAuKEwZIGFxeM/ADBGA6MJFgYPDSIouKBYovHLxOPBQZgHL4YNCFxAXB+4XFEYgpEHIpAGKYoMBFw6IHF4oYDNA3//yPLC4QAHF4olFTo4KJX46SEF6AHCz7FLF5OJz70HR5IADxOYBAy/LF8nwAwowGF46OBwBOLF5AXB5AvTB4UIC4wvNH48PC4JfMLwxPCGAovGHw4JD/AvKC5JIBBRAkDXooACwwLBMQyMDRowwGGIwIC4A7JPQZkDAoYVKAAOACIYAE/BFJA=")) \ No newline at end of file +require("heatshrink").decompress(atob("mEwwkE/4AM+cikMRkU/CZoWDkMAgMQgESDB4WBgMSkcykMQDB8xgMjAwcyiETFxoPHD4IwMBxAgBG4gLFCYMgHxExgQXI+USEoMvBhBIJ+URmQMJERQKBiI8BmQZHKRJTBgETmURC48xC5PxgERaBPxga9KgDnJ+KQJKYJFIQoQXKOhAvK+cRgBeBC5ZfF+QVBAAacKBQgWGAALNIX4iJCAA0Bd5kwCw4ABWw3ygJrC+YWJAAJeGRwboBIQhMFj5GFLwcgCAoeFW4kxIwf/IAoXGgARCmQuEUgwXHiczCwMCFwfwC5sBfIMRYwilGC5MSkaTEagwXImbbGC54WGRwwXIbIwXh+YXVh6YHC453GN4IwFO5AXGJAIwFgQXHHwwwHgYXH+AXGGAxnBAAyfHGAwdBAAyfHCQaOKAAMgGBEhOxRIKGYoAJC5YWKVJClLbRjsJAAvyC48vC5v/mJ0RYgyiCiU/CyAASA==")) \ No newline at end of file diff --git a/apps/notanalog/notanalog.png b/apps/notanalog/notanalog.png index f27d79729..117f19506 100644 Binary files a/apps/notanalog/notanalog.png and b/apps/notanalog/notanalog.png differ