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,
scrollbar: true
},
s.readJSON('cutelauncher.setting.json', true) || {}
s.readJSON('cutelauncher.settings.json', true) || {}
);
// Borrowed caching from Icon Launcher, code by halemmerich.

View File

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

View File

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

View File

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

View File

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

View File

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