Compare commits

..

25 commits

Author SHA1 Message Date
ab5016c9bc
systemd: declare known incompatible desktop environments 2026-08-02 13:43:59 -07:00
Fedora Release Engineering
9d96345347 Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild 2026-07-17 08:42:18 +00:00
František Zatloukal
0ddcc56e20 Rebuilt for fmt/spdlog 2026-06-25 12:41:56 +02:00
Jerry James
ed30418b47 Migrate from FontAwesome 6.x to 7.x 2026-05-27 11:42:19 -06:00
Björn Esser
028d43f0ba
Rebuild (jsoncpp) 2026-03-22 16:36:09 +01:00
Tomasz Hołubowicz
c5fe285571 Add patch fixing hot update loop 2026-02-10 09:25:28 +01:00
Tomasz Hołubowicz
63cf240c0e Update to 0.15.0 2026-02-07 13:52:58 +01:00
Fedora Release Engineering
4346efe1b4 Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-17 20:08:02 +00:00
Jitka Plesnikova
14a6c5fd9a Rebuild for new gpsd 2026-01-14 11:47:55 +01:00
7364ba7c37
Update to 0.14.0 (#2387223) 2025-08-10 15:44:40 -07:00
Fedora Release Engineering
82b6a9d129 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 20:18:16 +00:00
5ee9ae7125
Add patches for known 0.13.0 regressions (#2379698) 2025-07-12 11:41:21 -07:00
d31f5ea48c
Update to 0.13.0 (rhbz#2374294) 2025-06-23 09:21:05 -07:00
Björn Esser
13e261d341
Rebuild (jsoncpp)
Signed-off-by: Björn Esser <besser82@fedoraproject.org>
2025-02-27 10:39:39 +01:00
f930cdfcae
Update to 0.12.0 (#2346964) 2025-02-23 18:04:31 -08:00
Fedora Release Engineering
b6c879c90a Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-19 14:47:10 +00:00
František Zatloukal
3e37ef5026 Rebuilt for spdlog 1.15.0 2024-11-26 10:25:13 +01:00
8633053f88
Update to 0.11.0 (#2312394) 2024-09-15 12:01:52 -07:00
0cd8865482
Update to 0.10.4 (#2298541) 2024-07-22 13:35:56 -07:00
Fedora Release Engineering
76e2b9cf08 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-20 09:09:01 +00:00
Kefu Chai
d802b6d971 Rebuilt for fmt 11
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
2024-07-16 08:48:39 +08:00
František Zatloukal
f9974851fe Rebuilt for spdlog 1.14.1 2024-05-21 17:41:32 +02:00
b812f2575f
Update to 0.10.3 (#2250157) 2024-05-19 20:46:11 -07:00
2b1ca4d2fd
Update to 0.10.2 (#2276575) 2024-04-23 18:27:42 -07:00
9423a107a4
Update to 0.10.0 (#2269431) 2024-03-15 12:48:33 -07:00
5 changed files with 309 additions and 102 deletions

View file

@ -0,0 +1,142 @@
From c9a7cbbdb385521f992d60539daa6a94d403d253 Mon Sep 17 00:00:00 2001
From: Austin Horstman <khaneliman12@gmail.com>
Date: Mon, 9 Feb 2026 15:26:23 -0600
Subject: [PATCH 1/2] fix(image): treat missing interval as once
PR #4390 enabled millisecond intervals but changed image interval parsing so a missing interval could resolve to 1ms. That creates a hot update loop and can spike CPU and destabilize rendering in drawer/group setups (issue #4835).
Use explicit semantics: missing, null, non-numeric, or <=0 interval is treated as "once" (max sleep), while positive numeric values still support ms precision with a 1ms floor. This keeps the intended feature (sub-second polling when requested) without defaulting to busy looping.
Also align waybar-image(5) docs with runtime behavior.
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
---
man/waybar-image.5.scd | 3 ++-
src/modules/image.cpp | 27 ++++++++++++++++-----------
2 files changed, 18 insertions(+), 12 deletions(-)
diff --git a/man/waybar-image.5.scd b/man/waybar-image.5.scd
index 8c991265e..8be182a6f 100644
--- a/man/waybar-image.5.scd
+++ b/man/waybar-image.5.scd
@@ -26,7 +26,8 @@ The *image* module displays an image from a path.
*interval*: ++
typeof: integer or float ++
The interval (in seconds) to re-render the image. ++
- Minimum value is 0.001 (1ms). Values smaller than 1ms will be set to 1ms. ++
+ If set to a positive value, the minimum is 0.001 (1ms). Values smaller than 1ms will be set to 1ms. ++
+ Zero or negative values are treated as "once". ++
This is useful if the contents of *path* changes. ++
If no *interval* is defined, the image will only be rendered once.
diff --git a/src/modules/image.cpp b/src/modules/image.cpp
index 189deee6a..98bf3c46f 100644
--- a/src/modules/image.cpp
+++ b/src/modules/image.cpp
@@ -14,22 +14,27 @@ waybar::modules::Image::Image(const std::string& id, const Json::Value& config)
size_ = config["size"].asInt();
- interval_ = config_["interval"] == "once"
- ? std::chrono::milliseconds::max()
- : std::chrono::milliseconds(std::max(
- 1L, // Minimum 1ms due to millisecond precision
- static_cast<long>(
- (config_["interval"].isNumeric() ? config_["interval"].asDouble() : 0) *
- 1000)));
+ const auto once = std::chrono::milliseconds::max();
+ if (!config_.isMember("interval") || config_["interval"].isNull() ||
+ config_["interval"] == "once") {
+ interval_ = once;
+ } else if (config_["interval"].isNumeric()) {
+ const auto interval_seconds = config_["interval"].asDouble();
+ if (interval_seconds <= 0) {
+ interval_ = once;
+ } else {
+ interval_ =
+ std::chrono::milliseconds(std::max(1L, // Minimum 1ms due to millisecond precision
+ static_cast<long>(interval_seconds * 1000)));
+ }
+ } else {
+ interval_ = once;
+ }
if (size_ == 0) {
size_ = 16;
}
- if (interval_.count() == 0) {
- interval_ = std::chrono::milliseconds::max();
- }
-
delayWorker();
}
From 3b478ee6a53f153f35f35729c26bf11b15f692a2 Mon Sep 17 00:00:00 2001
From: Austin Horstman <khaneliman12@gmail.com>
Date: Mon, 9 Feb 2026 15:53:44 -0600
Subject: [PATCH 2/2] chore: format
Some unrelated files failed formatting.
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
---
include/util/command.hpp | 4 +---
src/modules/hyprland/window.cpp | 4 +---
src/modules/hyprland/windowcount.cpp | 6 ++----
3 files changed, 4 insertions(+), 10 deletions(-)
diff --git a/include/util/command.hpp b/include/util/command.hpp
index 58c59a965..89d4372a1 100644
--- a/include/util/command.hpp
+++ b/include/util/command.hpp
@@ -172,8 +172,6 @@ inline int32_t forkExec(const std::string& cmd, const std::string& output_name)
return pid;
}
-inline int32_t forkExec(const std::string& cmd) {
- return forkExec(cmd, "");
-}
+inline int32_t forkExec(const std::string& cmd) { return forkExec(cmd, ""); }
} // namespace waybar::util::command
diff --git a/src/modules/hyprland/window.cpp b/src/modules/hyprland/window.cpp
index e02a76917..197ed0920 100644
--- a/src/modules/hyprland/window.cpp
+++ b/src/modules/hyprland/window.cpp
@@ -237,9 +237,7 @@ void Window::queryActiveWorkspace() {
}
}
-void Window::onEvent(const std::string& ev) {
- dp.emit();
-}
+void Window::onEvent(const std::string& ev) { dp.emit(); }
void Window::setClass(const std::string& classname, bool enable) {
if (enable) {
diff --git a/src/modules/hyprland/windowcount.cpp b/src/modules/hyprland/windowcount.cpp
index 487b00834..d881a3616 100644
--- a/src/modules/hyprland/windowcount.cpp
+++ b/src/modules/hyprland/windowcount.cpp
@@ -38,7 +38,7 @@ WindowCount::~WindowCount() {
auto WindowCount::update() -> void {
std::lock_guard<std::mutex> lg(mutex_);
-
+
queryActiveWorkspace();
std::string format = config_["format"].asString();
@@ -125,9 +125,7 @@ void WindowCount::queryActiveWorkspace() {
}
}
-void WindowCount::onEvent(const std::string& ev) {
- dp.emit();
-}
+void WindowCount::onEvent(const std::string& ev) { dp.emit(); }
void WindowCount::setClass(const std::string& classname, bool enable) {
if (enable) {

View file

@ -1 +1 @@
SHA512 (waybar-0.9.24.tar.gz) = 13177fbc2c537cd903294ab708ae46307a785c524cbdbca06abe869af1f7ccc866ce38b6fbc2b3769cd95f458c46296b4c88ee927cabe890692e78b999143f0e
SHA512 (waybar-0.15.0.tar.gz) = f267c1ad2af1e4e74c3d8c966009a013c0b5c2849bfaf312b3b91e9d6f6856dc5466118f308208948118ea1de0cf70986cc3b592cc830f84d634b8518c5b8c9e

View file

@ -1,7 +1,7 @@
From 9825de7e4ce4b527fb6f54f8ad0fa8a1dbbf116f Mon Sep 17 00:00:00 2001
From f1f103b0ef6c1567103dc8f8cf0925c8fe3645ad Mon Sep 17 00:00:00 2001
From: Aleksei Bavshin <alebastr89@gmail.com>
Date: Sat, 24 Feb 2024 18:21:39 -0800
Subject: [PATCH 1/4] style: update font configuration
Subject: [PATCH 1/3] style: update font configuration
1. Add correct names for the Font Awesome to the list of fonts to
address all the reports about missing/broken glyphs.
@ -14,37 +14,37 @@ Subject: [PATCH 1/4] style: update font configuration
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/resources/style.css b/resources/style.css
index cf5c5fb0..6858aac6 100644
index 7e830285..e0310372 100644
--- a/resources/style.css
+++ b/resources/style.css
@@ -1,6 +1,5 @@
* {
- /* `otf-font-awesome` is required to be installed for icons */
- font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
+ font-family: 'Noto Sans Mono', 'Font Awesome 6 Free', 'Font Awesome 6 Brands', monospace;
+ font-family: 'Noto Sans Mono', 'Font Awesome 7 Free', 'Font Awesome 7 Brands', monospace;
font-size: 13px;
}
--
2.43.2
2.45.2
From a70c2d1d06a903671d443ba0785120cd0ab5fe6d Mon Sep 17 00:00:00 2001
From fdcf3c74ad6167a4addf68388945d0cbf496bda3 Mon Sep 17 00:00:00 2001
From: Aleksei Bavshin <alebastr@fedoraproject.org>
Date: Sat, 10 Feb 2024 16:22:19 -0800
Subject: [PATCH 2/4] config: use moon phase emojis insted of symbols
Subject: [PATCH 2/3] config: use moon phase emojis insted of symbols
Whatever the required font is, we don't have it in the default
installation.
---
resources/config | 2 +-
resources/config.jsonc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/resources/config b/resources/config
index daad8ab1..0dad1e48 100644
--- a/resources/config
+++ b/resources/config
@@ -104,7 +104,7 @@
diff --git a/resources/config.jsonc b/resources/config.jsonc
index 7e0771f5..d8c7adfb 100644
--- a/resources/config.jsonc
+++ b/resources/config.jsonc
@@ -129,7 +129,7 @@
"backlight": {
// "device": "acpi_video1",
"format": "{percent}% {icon}",
@ -54,81 +54,28 @@ index daad8ab1..0dad1e48 100644
"battery": {
"states": {
--
2.43.2
2.45.2
From cee75ed6c1e396a42f77ac6547cc85feb94a6cb4 Mon Sep 17 00:00:00 2001
From: Aleksei Bavshin <alebastr89@gmail.com>
Date: Sat, 24 Feb 2024 18:24:39 -0800
Subject: [PATCH 3/4] chore: wrap module lists in the config
"modules-right" has gotten too long, and it's easier to compare configs
that way.
---
resources/config | 28 +++++++++++++++++++++++++---
1 file changed, 25 insertions(+), 3 deletions(-)
diff --git a/resources/config b/resources/config
index 0dad1e48..2353cbdd 100644
--- a/resources/config
+++ b/resources/config
@@ -5,9 +5,31 @@
// "width": 1280, // Waybar width
"spacing": 4, // Gaps between modules (4px)
// Choose the order of the modules
- "modules-left": ["sway/workspaces", "sway/mode", "sway/scratchpad", "custom/media"],
- "modules-center": ["sway/window"],
- "modules-right": ["mpd", "idle_inhibitor", "pulseaudio", "network", "cpu", "memory", "temperature", "backlight", "keyboard-state", "sway/language", "battery", "battery#bat2", "clock", "tray"],
+ "modules-left": [
+ "sway/workspaces",
+ "sway/mode",
+ "sway/scratchpad",
+ "custom/media"
+ ],
+ "modules-center": [
+ "sway/window"
+ ],
+ "modules-right": [
+ "mpd",
+ "idle_inhibitor",
+ "pulseaudio",
+ "network",
+ "cpu",
+ "memory",
+ "temperature",
+ "backlight",
+ "keyboard-state",
+ "sway/language",
+ "battery",
+ "battery#bat2",
+ "clock",
+ "tray"
+ ],
// Modules configuration
// "sway/workspaces": {
// "disable-scroll": true,
--
2.43.2
From 8fbb12f6922faabe804ce1d7d8d0f932da2135c0 Mon Sep 17 00:00:00 2001
From f2a91ea2d7ae00fc1c14eed3702ab37eb0585feb Mon Sep 17 00:00:00 2001
From: Aleksei Bavshin <alebastr89@gmail.com>
Date: Sat, 24 Feb 2024 18:56:01 -0800
Subject: [PATCH 4/4] config: remove several modules from the default
Subject: [PATCH 3/3] config: remove several modules from the default
configuration
`mpd` is too noisy and aggressive in its reconnection attempts.
`custom/media`, `keyboard-state` and `battery#bat2` all require
additional configuration to work and aren't useful with the defaults.
`custom/media`, `custom/power`, `keyboard-state` and `battery#bat2` all
require additional configuration to work and aren't useful with the
defaults.
---
resources/config | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
resources/config.jsonc | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/resources/config b/resources/config
index 2353cbdd..da20c644 100644
--- a/resources/config
+++ b/resources/config
@@ -8,14 +8,12 @@
diff --git a/resources/config.jsonc b/resources/config.jsonc
index d8c7adfb..e7a89240 100644
--- a/resources/config.jsonc
+++ b/resources/config.jsonc
@@ -9,14 +9,12 @@
"modules-left": [
"sway/workspaces",
"sway/mode",
@ -144,7 +91,7 @@ index 2353cbdd..da20c644 100644
"idle_inhibitor",
"pulseaudio",
"network",
@@ -23,10 +21,8 @@
@@ -25,13 +23,10 @@
"memory",
"temperature",
"backlight",
@ -153,8 +100,12 @@ index 2353cbdd..da20c644 100644
"battery",
- "battery#bat2",
"clock",
"tray"
- "tray",
- "custom/power"
+ "tray"
],
// Modules configuration
// "sway/workspaces": {
--
2.43.2
2.45.2

View file

@ -0,0 +1,39 @@
From f67dcce02d02ef1dc8e78efc565647b6fe8656d4 Mon Sep 17 00:00:00 2001
From: Aleksei Bavshin <alebastr89@gmail.com>
Date: Sat, 4 Jul 2026 22:51:31 -0700
Subject: [PATCH] systemd: declare known incompatible desktop environments
Waybar can be used with many different Wayland compositors. Some of
those provide distinct user session targets, some aren't. The usual
recommendation for the latter ones is to allow manual startup of the
graphical-session.target and run "systemd --user start ..." command on
init.
To ensure that all of the above is supported, we have to keep the
service bound to the graphical-session.target. However, this may impact
unrelated sessions on machines with multiple DEs installed.
Instead of listing dozens of supported Wayland compositors and breaking
any configs that explicitly use graphical-session.target, keep a list
of known sessions where Waybar is not wanted.
---
resources/waybar.service.in | 3 +++
1 file changed, 3 insertions(+)
diff --git a/resources/waybar.service.in b/resources/waybar.service.in
index 18bac54c..9a54e5ba 100644
--- a/resources/waybar.service.in
+++ b/resources/waybar.service.in
@@ -6,6 +6,9 @@ After=graphical-session.target
Requisite=graphical-session.target
[Service]
+ExecCondition=sh -c '[ -n "$WAYLAND_DISPLAY" ]'
+# Known incompatible Wayland sessions
+ExecCondition=/usr/lib/systemd/systemd-xdg-autostart-condition "" "GNOME:KDE:COSMIC:X-Cinnamon"
ExecStart=@prefix@/bin/waybar
ExecReload=kill -SIGUSR2 $MAINPID
Restart=on-failure
--
2.55.0

View file

@ -1,8 +1,6 @@
%bcond wireplumber %[0%{?fedora} < 40]
Name: waybar
Version: 0.9.24
Release: 3%{?dist}
Version: 0.15.0
Release: 6%{?dist}
Summary: Highly customizable Wayland bar for Sway and Wlroots based compositors
# Source files/overall project licensed as MIT, but
# - BSL-1.0
@ -23,28 +21,37 @@ Source: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
# - Remove several modules from the config
# - Switch font to monospace
Patch: waybar-fedora-config-changes.patch
# Downstream changes to the systemd service:
# - Check that the environment is Wayland and is not listed as unsupported
Patch: waybar-fedora-systemd-target-conflicts.patch
# Fix for hot update loop that can spike CPU and
# destabilize rendering in drawer/group setups
# https://github.com/Alexays/Waybar/pull/4838
Patch: fix-treat-missing-interval-as-once.patch
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: meson >= 0.50.0
BuildRequires: meson >= 0.59.0
BuildRequires: scdoc
BuildRequires: systemd-rpm-macros
BuildRequires: pkgconfig(catch2)
BuildRequires: pkgconfig(date)
BuildRequires: pkgconfig(dbusmenu-gtk3-0.4)
BuildRequires: pkgconfig(fmt) >= 8.1.1
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
BuildRequires: pkgconfig(gio-unix-2.0)
BuildRequires: pkgconfig(gtk-layer-shell-0)
BuildRequires: pkgconfig(gtk-layer-shell-0) >= 0.9.0
BuildRequires: pkgconfig(gtkmm-3.0)
BuildRequires: pkgconfig(jack)
BuildRequires: pkgconfig(jsoncpp)
BuildRequires: pkgconfig(libevdev)
BuildRequires: pkgconfig(libgps)
BuildRequires: pkgconfig(libinput)
BuildRequires: pkgconfig(libmpdclient)
BuildRequires: pkgconfig(libnl-3.0)
BuildRequires: pkgconfig(libnl-genl-3.0)
BuildRequires: pkgconfig(libpipewire-0.3)
BuildRequires: pkgconfig(libpulse)
BuildRequires: pkgconfig(libudev)
BuildRequires: pkgconfig(playerctl)
@ -55,36 +62,32 @@ BuildRequires: pkgconfig(upower-glib)
BuildRequires: pkgconfig(wayland-client)
BuildRequires: pkgconfig(wayland-cursor)
BuildRequires: pkgconfig(wayland-protocols)
%if %{with wireplumber}
BuildRequires: pkgconfig(wireplumber-0.4)
%endif
BuildRequires: pkgconfig(wireplumber-0.5)
BuildRequires: pkgconfig(xkbregistry)
Enhances: sway
%if 0%{?fedora} < 45
Recommends: font(fontawesome6free)
Recommends: font(fontawesome6brands)
%else
Recommends: font(fontawesome7free)
Recommends: font(fontawesome7brands)
%endif
%description
%{summary}.
%prep
%autosetup -p1 -n Waybar-%{version}
# Disable chrono Time Zone extensions (P0355R7) support
sed -i 's/^\(have_chrono_timezones =\).*/\1 false/' meson.build
%build
%meson \
-Dcava=disabled \
-Dsndio=disabled \
%{!?with_wireplumber:-Dwireplumber=disabled}
-Dsndio=disabled
%meson_build
%install
%meson_install
# remove man pages for disabled modules
for module in cava sndio %{!?with_wireplumber:wireplumber} wlr-workspaces; do
rm -f %{buildroot}%{_mandir}/man5/%{name}-${module}.5
done
%check
%meson_test
@ -100,13 +103,85 @@ done
%license LICENSE
%doc README.md
%dir %{_sysconfdir}/xdg/%{name}
%config(noreplace) %{_sysconfdir}/xdg/%{name}/config
%config(noreplace) %{_sysconfdir}/xdg/%{name}/config.jsonc
%config(noreplace) %{_sysconfdir}/xdg/%{name}/style.css
%{_bindir}/%{name}
%{_mandir}/man5/%{name}*
%{_userunitdir}/%{name}.service
%changelog
* Sun Aug 02 2026 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.15.0-6
- systemd: declare known incompatible desktop environments
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
* Thu Jun 25 2026 František Zatloukal <fzatlouk@redhat.com> - 0.15.0-4
- Rebuilt for fmt/spdlog
* Wed May 27 2026 Jerry James <loganjerry@gmail.com> - 0.15.0-3
- Migrate from FontAwesome 6.x to 7.x
* Sun Mar 22 2026 Björn Esser <besser82@fedoraproject.org> - 0.15.0-2
- Rebuild (jsoncpp)
* Sat Feb 07 2026 Tomasz Hołubowicz <mail@alternateved.com> - 0.15.0-1
- Update to 0.15.0
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Wed Jan 14 2026 Jitka Plesnikova <jplesnik@redhat.com> - 0.14.0-2
- Rebuild for new gpsd
* Sun Aug 10 2025 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.14.0-1
- Update to 0.14.0 (#2387223)
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Sat Jul 12 2025 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.13.0-2
- Add patches for known 0.13.0 regressions (#2379698)
* Mon Jun 23 2025 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.13.0-1
- Update to 0.13.0 (rhbz#2374294)
* Thu Feb 27 2025 Björn Esser <besser82@fedoraproject.org> - 0.12.0-2
- Rebuild (jsoncpp)
* Sun Feb 23 2025 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.12.0-1
- Update to 0.12.0 (#2346964)
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Tue Nov 26 2024 František Zatloukal <fzatlouk@redhat.com> - 0.11.0-2
- Rebuilt for spdlog 1.15.0
* Sun Sep 15 2024 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.11.0-1
- Update to 0.11.0 (#2312394)
* Sat Jul 20 2024 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.10.4-1
- Update to 0.10.4 (#2298541)
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Mon Jul 15 2024 Kefu Chai <tchaikov@gmail.com> - 0.10.3-3
- Rebuild for fmt 11
* Tue May 21 2024 František Zatloukal <fzatlouk@redhat.com> - 0.10.3-2
- Rebuilt for spdlog 1.14.1
* Sun May 19 2024 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.10.3-1
- Update to 0.10.3 (#2250157)
* Tue Apr 23 2024 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.10.2-1
- Update to 0.10.2 (#2276575)
* Wed Mar 13 2024 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.10.0-1
- Update to 0.10.0
* Sat Feb 24 2024 Aleksei Bavshin <alebastr@fedoraproject.org> - 0.9.24-3
- Patch default configuration to address several known issues
- Fixes rhbz#2254813