From 6349ce1f1cdda7bce2265aecc7dc658cdfb3179e Mon Sep 17 00:00:00 2001 From: kkayam Date: Sun, 16 Feb 2025 17:24:55 +0000 Subject: [PATCH] rename settings json --- apps/cutelauncher/app.js | 2 +- apps/cutelauncher/metadata.json | 2 +- apps/cutelauncher/settings.js | 2 +- apps/onewordclock/app.js | 2 +- apps/onewordclock/metadata.json | 2 +- apps/onewordclock/settings.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/cutelauncher/app.js b/apps/cutelauncher/app.js index e7bc968fa..8bd634050 100644 --- a/apps/cutelauncher/app.js +++ b/apps/cutelauncher/app.js @@ -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. diff --git a/apps/cutelauncher/metadata.json b/apps/cutelauncher/metadata.json index f91defeea..e49b434f5 100644 --- a/apps/cutelauncher/metadata.json +++ b/apps/cutelauncher/metadata.json @@ -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", diff --git a/apps/cutelauncher/settings.js b/apps/cutelauncher/settings.js index 09573cebd..b093fd744 100644 --- a/apps/cutelauncher/settings.js +++ b/apps/cutelauncher/settings.js @@ -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'); diff --git a/apps/onewordclock/app.js b/apps/onewordclock/app.js index f9b625d3a..3fcf06051 100644 --- a/apps/onewordclock/app.js +++ b/apps/onewordclock/app.js @@ -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 diff --git a/apps/onewordclock/metadata.json b/apps/onewordclock/metadata.json index e6ce62f26..f8fcae5fe 100644 --- a/apps/onewordclock/metadata.json +++ b/apps/onewordclock/metadata.json @@ -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", diff --git a/apps/onewordclock/settings.js b/apps/onewordclock/settings.js index 21ee58599..973bba12b 100644 --- a/apps/onewordclock/settings.js +++ b/apps/onewordclock/settings.js @@ -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');