Change all occurrances of bwclk to bwclklite
parent
09eeac356b
commit
20e300182e
|
|
@ -1,5 +1,5 @@
|
|||
# BW Clock
|
||||
A very minimalistic clock.
|
||||
# BW Clock Lite
|
||||
This is a fork of a very minimalistic clock.
|
||||
|
||||

|
||||
|
||||
|
|
@ -25,3 +25,6 @@ Note: Check out the settings to change different themes.
|
|||
|
||||
## Creator
|
||||
[David Peer](https://github.com/peerdavid)
|
||||
|
||||
## Contributors
|
||||
thyttan
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in New Issue