Merge branch 'noctalia-dev:main' into patch-10

This commit is contained in:
notiant
2026-04-20 08:27:13 +02:00
committed by GitHub
51 changed files with 613 additions and 222 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ Singleton {
id: root
// Version properties
readonly property string baseVersion: "4.7.6"
readonly property string baseVersion: "4.7.7"
readonly property bool isDevelopment: true
readonly property string developmentSuffix: "-git"
readonly property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + developmentSuffix}`
+2
View File
@@ -770,6 +770,8 @@ Singleton {
return "";
if (icon.startsWith("/") || icon.startsWith("file://"))
return icon;
if (!ThemeIcons.iconExists(icon))
return "";
return ThemeIcons.iconFromName(icon);
}