mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
Merge branch 'noctalia-dev:main' into sidebar-toggle-settings
This commit is contained in:
@@ -39,6 +39,7 @@ NIconButton {
|
||||
|| BarWidgetRegistry.widgetMetadata["CustomButton"].middleClickExec
|
||||
readonly property bool hasExec: (userLeftClickExec || userRightClickExec || userMiddleClickExec)
|
||||
|
||||
sizeRatio: 0.8
|
||||
icon: userIcon
|
||||
tooltipText: {
|
||||
if (!hasExec) {
|
||||
|
||||
@@ -189,7 +189,7 @@ NPanel {
|
||||
}, {
|
||||
"id": SettingsPanel.Tab.Hooks,
|
||||
"label": "Hooks",
|
||||
"icon": "link",
|
||||
"icon": "cable",
|
||||
"source": hooksTab
|
||||
}, {
|
||||
"id": SettingsPanel.Tab.About,
|
||||
|
||||
@@ -8,10 +8,10 @@ Singleton {
|
||||
id: root
|
||||
|
||||
// Public properties
|
||||
property string baseVersion: "v2.5.0"
|
||||
property bool isRelease: false
|
||||
property string baseVersion: "2.5.0"
|
||||
property bool isDevelopment: true
|
||||
|
||||
property string currentVersion: isRelease ? baseVersion : baseVersion + "-dev"
|
||||
property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`
|
||||
|
||||
// Internal helpers
|
||||
function getVersion() {
|
||||
|
||||
Reference in New Issue
Block a user