Change all occurrances of bwclk to bwclklite

master
thyttan 2023-02-25 19:03:59 +01:00
parent 09eeac356b
commit 20e300182e
4 changed files with 14 additions and 11 deletions

View File

@ -1,5 +1,5 @@
# BW Clock # BW Clock Lite
A very minimalistic clock. This is a fork of a very minimalistic clock.
![](screenshot.png) ![](screenshot.png)
@ -25,3 +25,6 @@ Note: Check out the settings to change different themes.
## Creator ## Creator
[David Peer](https://github.com/peerdavid) [David Peer](https://github.com/peerdavid)
## Contributors
thyttan

View File

@ -11,7 +11,7 @@ const widget_utils = require("widget_utils");
/************************************************ /************************************************
* Globals * Globals
*/ */
const SETTINGS_FILE = "bwclk.setting.json"; const SETTINGS_FILE = "bwclklite.setting.json";
const W = g.getWidth(); const W = g.getWidth();
const H = g.getHeight(); const H = g.getHeight();
@ -92,7 +92,7 @@ clockInfoItems[0].items.unshift({ name : "nop",
let clockInfoMenu = clock_info.addInteractive(clockInfoItems, { let clockInfoMenu = clock_info.addInteractive(clockInfoItems, {
app: "bwclk", app: "bwclklite",
x : 0, x : 0,
y: 135, y: 135,
w: W, w: W,

View File

@ -1,8 +1,8 @@
{ {
"id": "bwclk", "id": "bwclklite",
"name": "BW Clock", "name": "BW Clock Lite",
"version": "0.32", "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", "readme": "README.md",
"icon": "app.png", "icon": "app.png",
"screenshots": [ "screenshots": [
@ -27,16 +27,16 @@
"allow_emulator": true, "allow_emulator": true,
"storage": [ "storage": [
{ {
"name": "bwclk.app.js", "name": "bwclklite.app.js",
"url": "app.js" "url": "app.js"
}, },
{ {
"name": "bwclk.img", "name": "bwclklite.img",
"url": "app-icon.js", "url": "app-icon.js",
"evaluate": true "evaluate": true
}, },
{ {
"name": "bwclk.settings.js", "name": "bwclklite.settings.js",
"url": "settings.js" "url": "settings.js"
} }
] ]

View File

@ -1,5 +1,5 @@
(function(back) { (function(back) {
const SETTINGS_FILE = "bwclk.setting.json"; const SETTINGS_FILE = "bwclklite.setting.json";
// initialize with default settings... // initialize with default settings...
const storage = require('Storage') const storage = require('Storage')