rename settings json
parent
b6b8bcd26b
commit
6349ce1f1c
|
|
@ -5,7 +5,7 @@
|
|||
showClocks: false,
|
||||
scrollbar: true
|
||||
},
|
||||
s.readJSON('cutelauncher.setting.json', true) || {}
|
||||
s.readJSON('cutelauncher.settings.json', true) || {}
|
||||
);
|
||||
|
||||
// Borrowed caching from Icon Launcher, code by halemmerich.
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"id": "cutelauncher",
|
||||
"name": "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",
|
||||
"icon": "app.png",
|
||||
"type": "launch",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
(function (back) {
|
||||
const SETTINGS_FILE = "cutelauncher.setting.json";
|
||||
const SETTINGS_FILE = "cutelauncher.settings.json";
|
||||
|
||||
// initialize with default settings...
|
||||
const storage = require('Storage');
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
require('Font4x5Numeric').add(Graphics);
|
||||
|
||||
// Load settings
|
||||
const SETTINGS_FILE = "onewordclock.setting.json";
|
||||
const SETTINGS_FILE = "onewordclock.settings.json";
|
||||
let settings = {
|
||||
mode: "Named",
|
||||
smallNumeralClock: true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"id": "onewordclock",
|
||||
"name": "One Word Clock",
|
||||
"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",
|
||||
"icon": "app.png",
|
||||
"tags": "clock",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
(function (back) {
|
||||
const SETTINGS_FILE = "onewordclock.setting.json";
|
||||
const SETTINGS_FILE = "onewordclock.settings.json";
|
||||
|
||||
// initialize with default settings...
|
||||
const storage = require('Storage');
|
||||
|
|
|
|||
Loading…
Reference in New Issue