diff --git a/config.mk b/config.mk index 0a31b39..fc45ce1 100644 --- a/config.mk +++ b/config.mk @@ -5,7 +5,7 @@ MANPREFIX = ${PREFIX}/share/man # In dist tarballs, the version is stored in the VERSION files. VERSION := '$(shell [ -f VERSION ] && cat VERSION)' ifeq ('',$(VERSION)) -VERSION := $(shell git describe) +VERSION := $(shell git describe --tags) endif # Xinerama, comment if you don't want it diff --git a/dunst.c b/dunst.c index d8bf621..84cfcb0 100644 --- a/dunst.c +++ b/dunst.c @@ -331,6 +331,7 @@ int main(int argc, char *argv[]) n->plain_text = true; n->urgency = LOW; n->icon = NULL; + n->raw_icon = NULL; n->category = NULL; n->msg = NULL; n->dbus_client = NULL;