From 1d1553d6a75f94218b8216fd5b49e4259ef39e95 Mon Sep 17 00:00:00 2001 From: ferreo Date: Mon, 18 Nov 2024 10:43:20 +0000 Subject: [PATCH] Update changelog for v1.0.0-101pika11; fix spacings and enhance font size consistency in various QML files for improved UI --- .github/release-nest-v3 | 2 +- pikabar/debian/changelog | 6 ++++++ pikabar/usr/share/pikabar/CommonStyles.qml | 3 ++- pikabar/usr/share/pikabar/widgets/SystemTray.qml | 4 +++- pikabar/usr/share/pikabar/widgets/Workspaces.qml | 3 +-- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/release-nest-v3 b/.github/release-nest-v3 index 56a6051..d8263ee 100644 --- a/.github/release-nest-v3 +++ b/.github/release-nest-v3 @@ -1 +1 @@ -1 \ No newline at end of file +2 \ No newline at end of file diff --git a/pikabar/debian/changelog b/pikabar/debian/changelog index 97ef4f3..4f5c2a5 100644 --- a/pikabar/debian/changelog +++ b/pikabar/debian/changelog @@ -1,3 +1,9 @@ +pikabar (1.0.0-101pika11) pika; urgency=medium + + * Fix spacings + + -- ferrreo Sat, 01 Oct 2022 14:50:00 +0300 + pikabar (1.0.0-101pika10) pika; urgency=medium * Switch to an open source font diff --git a/pikabar/usr/share/pikabar/CommonStyles.qml b/pikabar/usr/share/pikabar/CommonStyles.qml index 7faa6fe..afc5d3c 100644 --- a/pikabar/usr/share/pikabar/CommonStyles.qml +++ b/pikabar/usr/share/pikabar/CommonStyles.qml @@ -6,11 +6,12 @@ QtObject { property string tooltipTextColor: "white" property string textColor: "white" property string fontFamily: "Comfortaa" + property string fontFamilySans: "Sans" property string iconFontFamily: "Material Symbols Rounded" property int fontWeight: 500 property int tooltipFontSize: 14 property int textFontSize: 16 property int smallTextFontSize: 12 - property int iconFontSize: 14 + property int iconFontSize: 16 property int iconFontSizeLarge: 20 } \ No newline at end of file diff --git a/pikabar/usr/share/pikabar/widgets/SystemTray.qml b/pikabar/usr/share/pikabar/widgets/SystemTray.qml index be806da..21ca765 100644 --- a/pikabar/usr/share/pikabar/widgets/SystemTray.qml +++ b/pikabar/usr/share/pikabar/widgets/SystemTray.qml @@ -18,6 +18,7 @@ BarWidget { RowLayout { anchors.fill: parent + anchors.bottomMargin: 4 spacing: 10 Repeater { @@ -56,7 +57,8 @@ BarWidget { IconImage { id: icon - anchors.centerIn: parent + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter source: item && item.icon ? item.icon : "" visible: status === Image.Ready implicitSize: 24 diff --git a/pikabar/usr/share/pikabar/widgets/Workspaces.qml b/pikabar/usr/share/pikabar/widgets/Workspaces.qml index b7024d6..11a2281 100644 --- a/pikabar/usr/share/pikabar/widgets/Workspaces.qml +++ b/pikabar/usr/share/pikabar/widgets/Workspaces.qml @@ -160,8 +160,7 @@ BarWidget { return "#666666"; } font.pixelSize: Globals.commonStyles.textFontSize - font.family: Globals.commonStyles.fontFamily - + font.family: Globals.commonStyles.fontFamilySans Behavior on color { ColorAnimation { duration: 100