diff --git a/apps/bwclklite/README.md b/apps/bwclklite/README.md index 882d525f6..974411be0 100644 --- a/apps/bwclklite/README.md +++ b/apps/bwclklite/README.md @@ -1,5 +1,5 @@ -# BW Clock -A very minimalistic clock. +# BW Clock Lite +This is a fork of a very minimalistic clock. ![](screenshot.png) @@ -25,3 +25,6 @@ Note: Check out the settings to change different themes. ## Creator [David Peer](https://github.com/peerdavid) + +## Contributors +thyttan diff --git a/apps/bwclklite/app.js b/apps/bwclklite/app.js index 61a3feae1..1008eae9c 100644 --- a/apps/bwclklite/app.js +++ b/apps/bwclklite/app.js @@ -11,7 +11,7 @@ const widget_utils = require("widget_utils"); /************************************************ * Globals */ -const SETTINGS_FILE = "bwclk.setting.json"; +const SETTINGS_FILE = "bwclklite.setting.json"; const W = g.getWidth(); const H = g.getHeight(); @@ -92,7 +92,7 @@ clockInfoItems[0].items.unshift({ name : "nop", let clockInfoMenu = clock_info.addInteractive(clockInfoItems, { - app: "bwclk", + app: "bwclklite", x : 0, y: 135, w: W, diff --git a/apps/bwclklite/metadata.json b/apps/bwclklite/metadata.json index 8c68bc40d..bab852623 100644 --- a/apps/bwclklite/metadata.json +++ b/apps/bwclklite/metadata.json @@ -1,8 +1,8 @@ { - "id": "bwclk", - "name": "BW Clock", + "id": "bwclklite", + "name": "BW Clock Lite", "version": "0.32", - "description": "A very minimalistic clock.", + "description": "A very minimalistic clock. This version of BW Clock is quicker at the cost of the custom font.", "readme": "README.md", "icon": "app.png", "screenshots": [ @@ -27,16 +27,16 @@ "allow_emulator": true, "storage": [ { - "name": "bwclk.app.js", + "name": "bwclklite.app.js", "url": "app.js" }, { - "name": "bwclk.img", + "name": "bwclklite.img", "url": "app-icon.js", "evaluate": true }, { - "name": "bwclk.settings.js", + "name": "bwclklite.settings.js", "url": "settings.js" } ] diff --git a/apps/bwclklite/settings.js b/apps/bwclklite/settings.js index 116253fda..2d3916a3d 100644 --- a/apps/bwclklite/settings.js +++ b/apps/bwclklite/settings.js @@ -1,5 +1,5 @@ (function(back) { - const SETTINGS_FILE = "bwclk.setting.json"; + const SETTINGS_FILE = "bwclklite.setting.json"; // initialize with default settings... const storage = require('Storage')