rename settings json
parent
b6b8bcd26b
commit
6349ce1f1c
|
|
@ -5,7 +5,7 @@
|
||||||
showClocks: false,
|
showClocks: false,
|
||||||
scrollbar: true
|
scrollbar: true
|
||||||
},
|
},
|
||||||
s.readJSON('cutelauncher.setting.json', true) || {}
|
s.readJSON('cutelauncher.settings.json', true) || {}
|
||||||
);
|
);
|
||||||
|
|
||||||
// Borrowed caching from Icon Launcher, code by halemmerich.
|
// Borrowed caching from Icon Launcher, code by halemmerich.
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "cutelauncher",
|
"id": "cutelauncher",
|
||||||
"name": "Cute Launcher",
|
"name": "Cute Launcher",
|
||||||
"shortName": "Cute Launcher",
|
"shortName": "Cute Launcher",
|
||||||
"version": "0.26",
|
"version": "0.27",
|
||||||
"description": "A simple launcher app for Bangle.js 2 that makes use of the full touchscreen",
|
"description": "A simple launcher app for Bangle.js 2 that makes use of the full touchscreen",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"type": "launch",
|
"type": "launch",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
(function (back) {
|
(function (back) {
|
||||||
const SETTINGS_FILE = "cutelauncher.setting.json";
|
const SETTINGS_FILE = "cutelauncher.settings.json";
|
||||||
|
|
||||||
// initialize with default settings...
|
// initialize with default settings...
|
||||||
const storage = require('Storage');
|
const storage = require('Storage');
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
require('Font4x5Numeric').add(Graphics);
|
require('Font4x5Numeric').add(Graphics);
|
||||||
|
|
||||||
// Load settings
|
// Load settings
|
||||||
const SETTINGS_FILE = "onewordclock.setting.json";
|
const SETTINGS_FILE = "onewordclock.settings.json";
|
||||||
let settings = {
|
let settings = {
|
||||||
mode: "Named",
|
mode: "Named",
|
||||||
smallNumeralClock: true
|
smallNumeralClock: true
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "onewordclock",
|
"id": "onewordclock",
|
||||||
"name": "One Word Clock",
|
"name": "One Word Clock",
|
||||||
"shortName": "One Word",
|
"shortName": "One Word",
|
||||||
"version": "0.96",
|
"version": "0.97",
|
||||||
"description": "A unique clock that displays a single evocative word for each hour of the day",
|
"description": "A unique clock that displays a single evocative word for each hour of the day",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"tags": "clock",
|
"tags": "clock",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
(function (back) {
|
(function (back) {
|
||||||
const SETTINGS_FILE = "onewordclock.setting.json";
|
const SETTINGS_FILE = "onewordclock.settings.json";
|
||||||
|
|
||||||
// initialize with default settings...
|
// initialize with default settings...
|
||||||
const storage = require('Storage');
|
const storage = require('Storage');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue