Update pikabar version and refactor Topbar.qml to improve widget bindings for better maintainability and layout consistency
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 38s

This commit is contained in:
ferreo 2024-11-26 11:01:11 +00:00
parent 29f1ce6b3d
commit e381297455
3 changed files with 7 additions and 7 deletions

View File

@ -1 +1 @@
1
2

View File

@ -1,4 +1,4 @@
pikabar (1.0.0-101pika16) pika; urgency=medium
pikabar (1.0.0-101pika17) pika; urgency=medium
* Less of a chonker

View File

@ -52,7 +52,7 @@ PanelWindow {
Widgets.Workspaces {
id: workspacesWidget
workspaces: workspaces
workspaces: panel.workspaces
}
Widgets.NowPlaying {
@ -87,12 +87,12 @@ PanelWindow {
spacing: 0
Widgets.Stats {
updateInterval: sysInfoInterval
updateInterval: panel.sysInfoInterval
}
Widgets.Weather {
isAmerican: weatherConfig.isamerican ?? false
city: weatherConfig.city ?? "London"
updateInterval: weatherConfig.weatherupdateinterval ?? 300000
isAmerican: panel.weatherConfig.isamerican ?? false
city: panel.weatherConfig.city ?? "London"
updateInterval: panel.weatherConfig.weatherupdateinterval ?? 300000
}
Widgets.Power {}
Widgets.SystemTray {}