ncmpc 0.41 - (2020-10-16)
* new main loop (copying code from MPD, replacing boost::asio)
* library page: fix crash bug
* lyrics: remove the "lyricwiki" plugin because the site is gone
ncmpc 0.40 - (2020-10-07)
* fix crash when range selection includes ".."
* fix another crash with a very narrow terminal window
* another jumping cursor fix for large scroll-offset values
* show elapsed time of streams
ncmpc 0.39 - (2020-08-21)
* library page: skip tags when there is only one value
* fix jumping cursor with large scroll-offset values
* key bindigs page: fix crash bug
* key bindigs page: eliminate bogus message "Did you forget to Apply your changes?"
Changelog: 89af16cad4/NEWS
PR: 250421
Submitted by: Laurent Cimon <laurent@nilio.ca> (maintainer)
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D26837
11 lines
181 B
C++
11 lines
181 B
C++
--- src/signals.cxx.orig 2020-10-17 18:45:52 UTC
|
|
+++ src/signals.cxx
|
|
@@ -19,6 +19,8 @@
|
|
|
|
#include "Instance.hxx"
|
|
|
|
+#include <signal.h>
|
|
+
|
|
void
|
|
Instance::OnSigwinch() noexcept
|
|
{
|