Skip to content

Commit 7cef480

Browse files
committed
v0.2.7: drop Layout.fillWidth/fillHeight from CompactRepresentation
The v0.2.6 attempt only stretched the widget horizontally, growing the click target without making the cat bigger vertically. Cat size is bounded by panel thickness; users adjust panel height to get a bigger cat. Reverting to v0.2.5 shape.
1 parent 0c4e187 commit 7cef480

5 files changed

Lines changed: 15 additions & 12 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "meowtrics"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = "2021"
55
rust-version = "1.75"
66
authors = ["Ramazan Yavuz <yavuzramazan1994@gmail.com>"]

debian/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
meowtrics (0.2.7-1) unstable; urgency=low
2+
3+
* Drop Layout.fillWidth/fillHeight from CompactRepresentation
4+
- The v0.2.6 attempt to "fill the panel slot" only stretched the
5+
widget horizontally, growing the click target without making the
6+
cat any bigger vertically. Useless and visually awkward (the cat
7+
sat in a wide click area).
8+
- Cat size is bounded by panel thickness; users who want a bigger
9+
cat should adjust their panel height in the panel settings.
10+
11+
-- Ramazan Yavuz <yavuzramazan1994@gmail.com> Wed, 06 May 2026 12:15:00 +0000
12+
113
meowtrics (0.2.6-1) unstable; urgency=low
214

315
* Fix "could not parse meowtrics tray-state" tooltip

plasmoid/contents/ui/CompactRepresentation.qml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// pattern used by hydra-llm and most stock Plasma 6 plasmoids.
88

99
import QtQuick
10-
import QtQuick.Layouts
1110
import Qt5Compat.GraphicalEffects
1211
import org.kde.plasma.core as PlasmaCore
1312
import org.kde.kirigami as Kirigami
@@ -39,14 +38,6 @@ MouseArea {
3938
hoverEnabled: true
4039
onClicked: Plasmoid.expanded = !Plasmoid.expanded
4140

42-
// Tell the panel host we want as much room as it can give us, like
43-
// app-launcher / window-tasks plasmoids do. Without this the host
44-
// sticks us in a small square.
45-
Layout.fillWidth: true
46-
Layout.fillHeight: true
47-
Layout.minimumWidth: Kirigami.Units.iconSizes.small
48-
Layout.minimumHeight: Kirigami.Units.iconSizes.small
49-
5041
Image {
5142
id: sprite
5243
anchors.fill: parent

plasmoid/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"Id": "com.ra-yavuz.meowtrics",
1414
"License": "MIT",
1515
"Name": "meowtrics",
16-
"Version": "0.2.6",
16+
"Version": "0.2.7",
1717
"Website": "https://ra-yavuz.github.io/meowtrics/"
1818
},
1919
"X-Plasma-API-Minimum-Version": "6.0",

0 commit comments

Comments
 (0)