diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | README.adoc | 2 | ||||
m--------- | liberty | 0 | ||||
-rw-r--r-- | nncmpp.c | 2 |
4 files changed, 6 insertions, 0 deletions
@@ -5,6 +5,8 @@ Unreleased * Added ability to configure bindable user-defined actions; these can launch arbitrary shell commands + * Prevented crashes when the daemon disconnects during search + * X11: added support for font fallbacks to the editor as well diff --git a/README.adoc b/README.adoc index 1a0f199..775c5a3 100644 --- a/README.adoc +++ b/README.adoc @@ -33,6 +33,8 @@ You can get a package with the latest development version using Arch Linux's https://aur.archlinux.org/packages/nncmpp-git[AUR], or as a https://git.janouch.name/p/nixexprs[Nix derivation]. +Stable versions are present in: OpenBSD ports. + Documentation ------------- See the link:nncmpp.adoc[man page] for information about usage. diff --git a/liberty b/liberty -Subproject 75fc6f1c374796f9e794297c3893089009b8772 +Subproject 017cb1d5702a32603810545cd74c1da65e35d12 @@ -3785,6 +3785,8 @@ static void search_on_changed (void) { struct mpd_client *c = &g.client; + if (c->state != MPD_CONNECTED) + return; size_t len; char *u8 = (char *) u32_to_u8 (g.editor.line, g.editor.len + 1, NULL, &len); |