Accepting request 978870 from home:stdden:branches:X11:Wayland
- Update to 0.9.13: * use moon phases for backlight format-icons #1478 * Use user-defined mode when toggling visibility rather than resetting to default #1479 * sway/language: Load exotic xkb rules too #1480 * Battery module. Gamepads support #1481 * Hide/Unhide temperature module when "format*" is empty. #1485 * feat: added network speed in Bytes #1489 * Upower module #1484 * Add option to display week number on calendar #1315 * Upower fixes #1493 * Battery module support for rk817 #1495 * Waybar. Issue#1068. Double/Triple events #1499 * refactor: change enum ipc_command_type to uint32_t #1516 * Add disabled bluetooth style #1518 * #1315. Add option to display week number on calendar #1492 * Sway/window: Only update icon from main thread #1522 * sway/window: Allow the user to change the size of the app icon #1523 * bar: don't set layer-shell anchor for edges when width is not 'auto' #1524 * Replace sleep_until with sleep_for to prevent clock from getting stuck with system time adjustment #1500 * Show hidden bar #1510 * Backlight: avoid crash on getting brightness fails #1530 * Add a config to set a timeout for the idle_inhibitor module #1454 * network: calculate bandwidth for current interface #1527 * feat: extend bluetooth module #1540 * Add classes to individual keyboard state labels #1551 * Calendar module: localization issue #1552 * Prevent segfault in getCpuFrequency #1563 * Issue#1556. Battery module: a lot of warnings when battery dissapears #1557 * Gamemode Module #1554 * Calendar module: localization issue #1552 #1555 * sway/window: Add heuristics for finding icons #1525 * River Window Module #1562 OBS-URL: https://build.opensuse.org/request/show/978870 OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/waybar?expand=0&rev=72
This commit is contained in:
parent
5b474e87b6
commit
7d09483bae
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05d15587d77a526117da8fce3a06b0a2cdc63b9f8f36520189e53b73cb178c02
|
||||
size 4714008
|
3
0.9.13.tar.gz
Normal file
3
0.9.13.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e6553274ce3013d2be9912f975287efe4dfd38de4e335db43a73aff2a3b0a34
|
||||
size 198160
|
@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue May 24 06:52:59 UTC 2022 - Denys Kondratenko <stdden@opensuse.org>
|
||||
|
||||
- Update to 0.9.13:
|
||||
* use moon phases for backlight format-icons #1478
|
||||
* Use user-defined mode when toggling visibility rather than resetting to default #1479
|
||||
* sway/language: Load exotic xkb rules too #1480
|
||||
* Battery module. Gamepads support #1481
|
||||
* Hide/Unhide temperature module when "format*" is empty. #1485
|
||||
* feat: added network speed in Bytes #1489
|
||||
* Upower module #1484
|
||||
* Add option to display week number on calendar #1315
|
||||
* Upower fixes #1493
|
||||
* Battery module support for rk817 #1495
|
||||
* Waybar. Issue#1068. Double/Triple events #1499
|
||||
* refactor: change enum ipc_command_type to uint32_t #1516
|
||||
* Add disabled bluetooth style #1518
|
||||
* #1315. Add option to display week number on calendar #1492
|
||||
* Sway/window: Only update icon from main thread #1522
|
||||
* sway/window: Allow the user to change the size of the app icon #1523
|
||||
* bar: don't set layer-shell anchor for edges when width is not 'auto' #1524
|
||||
* Replace sleep_until with sleep_for to prevent clock from getting stuck with system time adjustment #1500
|
||||
* Show hidden bar #1510
|
||||
* Backlight: avoid crash on getting brightness fails #1530
|
||||
* Add a config to set a timeout for the idle_inhibitor module #1454
|
||||
* network: calculate bandwidth for current interface #1527
|
||||
* feat: extend bluetooth module #1540
|
||||
* Add classes to individual keyboard state labels #1551
|
||||
* Calendar module: localization issue #1552
|
||||
* Prevent segfault in getCpuFrequency #1563
|
||||
* Issue#1556. Battery module: a lot of warnings when battery dissapears #1557
|
||||
* Gamemode Module #1554
|
||||
* Calendar module: localization issue #1552 #1555
|
||||
* sway/window: Add heuristics for finding icons #1525
|
||||
* River Window Module #1562
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 10 09:58:22 UTC 2022 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: waybar
|
||||
Version: 0.9.12
|
||||
Version: 0.9.13
|
||||
Release: 0
|
||||
Summary: Customizable Wayland bar for Sway and Wlroots based compositors
|
||||
License: MIT
|
||||
@ -26,7 +26,7 @@ URL: https://github.com/Alexays/Waybar
|
||||
# use this to download tarball. then use `meson subprojects download`
|
||||
# to get the `date` dependency. and create own tarball
|
||||
#Source: https://github.com/Alexays/Waybar/archive/%{version}.tar.gz
|
||||
Source: %{version}.tar.xz
|
||||
Source: %{version}.tar.gz
|
||||
BuildRequires: cmake
|
||||
%if 0%{?sle_version} >= 150400
|
||||
BuildRequires: gcc11-c++
|
||||
@ -37,6 +37,8 @@ BuildRequires: gtk-layer-shell-devel
|
||||
BuildRequires: meson
|
||||
BuildRequires: ninja
|
||||
BuildRequires: pkgconfig
|
||||
# test dependency
|
||||
BuildRequires: pkgconfig(catch2)
|
||||
# wait for SR#860135
|
||||
#BuildRequires: sndio-devel >= 1.7.0
|
||||
# optional: man pages
|
||||
@ -48,6 +50,7 @@ BuildRequires: pkgconfig(gio-unix-2.0)
|
||||
BuildRequires: pkgconfig(gtkmm-3.0)
|
||||
BuildRequires: pkgconfig(jsoncpp)
|
||||
BuildRequires: pkgconfig(libinput)
|
||||
BuildRequires: pkgconfig(upower-glib)
|
||||
# optional: mpd module
|
||||
BuildRequires: pkgconfig(libmpdclient)
|
||||
# optional: network
|
||||
|
Loading…
Reference in New Issue
Block a user