Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xdg-desktop-portal-hyprland for openSUSE:Factory checked in at 2023-10-24 20:08:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-hyprland (Old) and /work/SRC/openSUSE:Factory/.xdg-desktop-portal-hyprland.new.24901 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xdg-desktop-portal-hyprland" Tue Oct 24 20:08:04 2023 rev:8 rq:1119722 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland.changes 2023-10-17 20:25:50.201042874 +0200 +++ /work/SRC/openSUSE:Factory/.xdg-desktop-portal-hyprland.new.24901/xdg-desktop-portal-hyprland.changes 2023-10-24 20:08:11.556165497 +0200 @@ -1,0 +2,6 @@ +Sun Oct 22 15:27:00 UTC 2023 - Nicolas Lorin <androw95...@gmail.com> + +- Update to version 1.2.3: + * Small update still fixing more edge cases causing a CPU core spike after exit. + +------------------------------------------------------------------- Old: ---- xdg-desktop-portal-hyprland-1.2.2.tar.gz New: ---- xdg-desktop-portal-hyprland-1.2.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xdg-desktop-portal-hyprland.spec ++++++ --- /var/tmp/diff_new_pack.Ck8qpE/_old 2023-10-24 20:08:13.728244465 +0200 +++ /var/tmp/diff_new_pack.Ck8qpE/_new 2023-10-24 20:08:13.728244465 +0200 @@ -18,7 +18,7 @@ %define _protocol_version 0.2 Name: xdg-desktop-portal-hyprland -Version: 1.2.2 +Version: 1.2.3 Release: 0 Summary: Extended xdg-desktop-portal backend for Hyprland License: MIT ++++++ xdg-desktop-portal-hyprland-1.2.2.tar.gz -> xdg-desktop-portal-hyprland-1.2.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xdg-desktop-portal-hyprland-1.2.2/VERSION new/xdg-desktop-portal-hyprland-1.2.3/VERSION --- old/xdg-desktop-portal-hyprland-1.2.2/VERSION 2023-10-10 21:52:22.000000000 +0200 +++ new/xdg-desktop-portal-hyprland-1.2.3/VERSION 2023-10-22 15:27:13.000000000 +0200 @@ -1 +1 @@ -1.2.2 +1.2.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xdg-desktop-portal-hyprland-1.2.2/src/core/PortalManager.cpp new/xdg-desktop-portal-hyprland-1.2.3/src/core/PortalManager.cpp --- old/xdg-desktop-portal-hyprland-1.2.2/src/core/PortalManager.cpp 2023-10-10 21:52:22.000000000 +0200 +++ new/xdg-desktop-portal-hyprland-1.2.3/src/core/PortalManager.cpp 2023-10-22 15:27:13.000000000 +0200 @@ -246,7 +246,7 @@ m_iPID = getpid(); try { - m_pConnection = sdbus::createDefaultBusConnection("org.freedesktop.impl.portal.desktop.hyprland"); + m_pConnection = sdbus::createSessionBusConnection("org.freedesktop.impl.portal.desktop.hyprland"); } catch (std::exception& e) { Debug::log(CRIT, "Couldn't create the dbus connection ({})", e.what()); exit(1); @@ -323,7 +323,7 @@ } for (size_t i = 0; i < 3; ++i) { - if (pollfds[0].revents & POLLHUP) { + if (pollfds[i].revents & POLLHUP) { Debug::log(CRIT, "[core] Disconnected from pollfd id {}", i); g_pPortalManager->terminate(); }