Settings: v41, telemetry off by default (Opt-in), no longer sending font names

This commit is contained in:
Lemmy
2026-01-17 15:28:53 -05:00
parent 17b0d09092
commit d4aad8cf49
3 changed files with 6 additions and 9 deletions
+4 -5
View File
@@ -83,7 +83,7 @@
"language": "",
"allowPanelsOnScreenWithoutBar": true,
"showChangelogOnStartup": true,
"telemetryEnabled": true
"telemetryEnabled": false
},
"ui": {
"fontDefault": "",
@@ -332,7 +332,6 @@
"normalUrgencyDuration": 8,
"criticalUrgencyDuration": 15,
"enableKeyboardLayoutToast": true,
"enableMediaToast": false,
"saveToHistory": {
"low": true,
"normal": true,
@@ -346,7 +345,8 @@
"normalSoundFile": "",
"lowSoundFile": "",
"excludedApps": "discord,firefox,chrome,chromium,edge"
}
},
"enableMediaToast": false
},
"osd": {
"enabled": true,
@@ -357,8 +357,7 @@
"enabledTypes": [
0,
1,
2,
4
2
],
"monitors": []
},
+2 -2
View File
@@ -25,7 +25,7 @@ Singleton {
- Default cache directory: ~/.cache/noctalia
*/
readonly property alias data: adapter // Used to access via Settings.data.xxx.yyy
readonly property int settingsVersion: 40
readonly property int settingsVersion: 41
readonly property bool isDebug: Quickshell.env("NOCTALIA_DEBUG") === "1"
readonly property string shellName: "noctalia"
readonly property string configDir: Quickshell.env("NOCTALIA_CONFIG_DIR") || (Quickshell.env("XDG_CONFIG_HOME") || Quickshell.env("HOME") + "/.config") + "/" + shellName + "/"
@@ -270,7 +270,7 @@ Singleton {
property string language: ""
property bool allowPanelsOnScreenWithoutBar: true
property bool showChangelogOnStartup: true
property bool telemetryEnabled: true
property bool telemetryEnabled: false
}
// ui
-2
View File
@@ -126,9 +126,7 @@ Singleton {
monitors: getMonitorInfo(),
ui: {
scaleRatio: Settings.data.general.scaleRatio,
fontDefault: Settings.data.ui.fontDefault || "default",
fontDefaultScale: Settings.data.ui.fontDefaultScale,
fontFixed: Settings.data.ui.fontFixed || "default",
fontFixedScale: Settings.data.ui.fontFixedScale
}
};