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
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

View File

@ -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,

View File

@ -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"
}
]

View File

@ -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')