notion: 4.0.1 -> 4.0.2

What's New

The highlight of this release is fixing the long-standing issue
where Firefox popups would sometimes show up in the wrong place
on multi-monitor setups (https://github.com/raboof/notion/issue/59),
thanks to great detective work by @florolf . Thanks!

* Initial implementation of _NET_FRAME_EXTENTS (https://github.com/raboof/notion/pull/303) @florolf/@raboof
* Fix potential livelock in do_timer_set (https://github.com/raboof/notion/pull/302) @dnr

Docs

* Add more docs to cfg_notion.lua (https://github.com/raboof/notion/pull/283) @raboof

Under the hood

* Trigger release drafter from github actions (https://github.com/raboof/notion/pull/304) @raboof
* Remove some colorful language (https://github.com/raboof/notion/pull/296) @raboof

https://github.com/raboof/notion/releases/tag/4.0.2
This commit is contained in:
Arnout Engelen 2020-12-21 15:33:39 +01:00
parent e9158eca70
commit e8488ab545
No known key found for this signature in database
GPG Key ID: 061107B0F74A6DAA

View File

@ -7,13 +7,13 @@
stdenv.mkDerivation rec {
pname = "notion";
version = "4.0.1";
version = "4.0.2";
src = fetchFromGitHub {
owner = "raboof";
repo = pname;
rev = version;
sha256 = "1s0fyacygvc9iz7b9v3b2cmzzqc02nh4g1p9bfcxbg254iscd502";
sha256 = "14swd0yqci8lxn259fkd9w92bgyf4rmjwgvgyqp78wlfix6ai4mv";
};
nativeBuildInputs = [ pkgconfig makeWrapper groff ];