rename settings json

master
kkayam 2025-02-16 17:24:55 +00:00
parent b6b8bcd26b
commit 6349ce1f1c
6 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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