forked from pool/hypridle
Compare commits
2 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
f72058aa5a | ||
|
6bac4880f3 |
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7160b1e80419e0dabf458173633a71619799199f9e0c94502f73f05c65652fe5
|
|
||||||
size 46602
|
|
3
hypridle-0.1.5.obscpio
Normal file
3
hypridle-0.1.5.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c7be54bb6b9670d9c5f50e0c516f46edd2ebeb4462f3b29316d4a59d3444020a
|
||||||
|
size 50186
|
@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 10 21:13:41 UTC 2024 - malcolmlewis@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.1.5:
|
||||||
|
* Tiny update to fix dbus inhibitor locks not being decremented
|
||||||
|
properly.
|
||||||
|
* Core: handleDbusScreensaver must return uint32,
|
||||||
|
(gh#hyprwm/hypridle#98).
|
||||||
|
- Changes from version 0.1.4:
|
||||||
|
* Sdbus-cpp -> moved to >=2.0.0
|
||||||
|
* Core: move to sdbus-cpp2, (gh#hyprwm/hypridle#96).
|
||||||
|
- Changes from version 0.1.3:
|
||||||
|
* Add support for systemd-inhibit idle block inhibits,
|
||||||
|
(gh#hyprwm/hypridle#57).
|
||||||
|
* Use separate ignore_systemd_inhibit config param for systemd.
|
||||||
|
Register ScreenSaver object under multiple paths,
|
||||||
|
(gh#hyprwm/hypridle#59).
|
||||||
|
* Fixed getconf command in build instructions,
|
||||||
|
(gh#hyprwm/hypridle#60).
|
||||||
|
* Reset timers after inhibitor has been taken off if idled,
|
||||||
|
(gh#hyprwm/hypridle#72).
|
||||||
|
* Config: use hyprutils helper, (gh#hyprwm/hypridle#77).
|
||||||
|
* Fix running without logind, (gh#hyprwm/hypridle#76).
|
||||||
|
* Typo fix hyprlock->hypridle, (gh#hyprwm/hypridle#82).
|
||||||
|
* Include Log.hpp in main, (gh#hyprwm/hypridle#87).
|
||||||
|
* Flush cout buffer automatically, (gh#hyprwm/hypridle#88).
|
||||||
|
* Nix: add wayland-scanner native build input,
|
||||||
|
(gh#hyprwm/hypridle#89).
|
||||||
|
* Do not crash if the last CLI parameter was -c,
|
||||||
|
(gh#hyprwm/hypridle#92).
|
||||||
|
* Core: release inhibit cookies on app disconnect from dbus,
|
||||||
|
(gh#hyprwm/hypridle#93).
|
||||||
|
- Add build requires on pkgconfig(hyprutils).
|
||||||
|
- Add build requires on Hyprland for directory ownership.
|
||||||
|
- Add default hypridle.conf now installed from the source, but
|
||||||
|
retain example.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 22 23:05:09 UTC 2024 - Joshua Smith <smolsheep@opensuse.org>
|
Mon Apr 22 23:05:09 UTC 2024 - Joshua Smith <smolsheep@opensuse.org>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: hypridle
|
name: hypridle
|
||||||
version: 0.1.2
|
version: 0.1.5
|
||||||
mtime: 1713472482
|
mtime: 1730561387
|
||||||
commit: 7cff4581a3753154fc5b41f39a098fad49b777b1
|
commit: 26780ac51f6e7273e3934885036b7a7ed1a5af01
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: hypridle
|
Name: hypridle
|
||||||
Version: 0.1.2
|
Version: 0.1.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Hyprland's idle daemon
|
Summary: Hyprland's idle daemon
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -26,8 +26,11 @@ Source0: %{name}-%{version}.tar.xz
|
|||||||
Source1: hypridle.conf
|
Source1: hypridle.conf
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
|
## Added for directory ownership
|
||||||
|
BuildRequires: hyprland
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
BuildRequires: pkgconfig(hyprlang) >= 0.4.2
|
BuildRequires: pkgconfig(hyprlang) >= 0.4.2
|
||||||
|
BuildRequires: pkgconfig(hyprutils)
|
||||||
BuildRequires: pkgconfig(sdbus-c++)
|
BuildRequires: pkgconfig(sdbus-c++)
|
||||||
BuildRequires: pkgconfig(wayland-client)
|
BuildRequires: pkgconfig(wayland-client)
|
||||||
BuildRequires: pkgconfig(wayland-protocols)
|
BuildRequires: pkgconfig(wayland-protocols)
|
||||||
@ -54,6 +57,7 @@ install -Dm 0644 %{SOURCE1} %buildroot/%_docdir/%name/hypridle.conf.example
|
|||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.md hypridle.conf.example
|
%doc README.md hypridle.conf.example
|
||||||
%{_bindir}/hypridle
|
%{_bindir}/hypridle
|
||||||
|
%{_datadir}/hypr/hypridle.conf
|
||||||
%{_userunitdir}/hypridle.service
|
%{_userunitdir}/hypridle.service
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user