dmenu

customized build of dmenu, the dynamic menu for X
git clone git://src.adamsgaard.dk/dmenu
Log | Files | Refs | README | LICENSE Back to index

commit df1dc969e1da488e38055d1490ada47923764dd6
parent 57a49f411adbc029306450c1b6caaed4ee62793e
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed,  2 Sep 2020 20:37:32 +0200

Merge branch 'master' of git://git.suckless.org/dmenu

Diffstat:
MLICENSE | 2+-
Mconfig.mk | 2+-
Mdrw.c | 1+
3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -8,7 +8,7 @@ MIT/X Consortium License © 2009 Markus Schnalke <meillo@marmaro.de> © 2009 Evan Gates <evan.gates@gmail.com> © 2010-2012 Connor Lane Smith <cls@lubutu.com> -© 2014-2019 Hiltjo Posthuma <hiltjo@codemadness.org> +© 2014-2020 Hiltjo Posthuma <hiltjo@codemadness.org> © 2015-2019 Quentin Rameau <quinq@fifth.space> © 2019-2020 Anders Damsgaard <anders@adamsgaard.dk> diff --git a/config.mk b/config.mk @@ -1,5 +1,5 @@ # dmenu version -VERSION = 4.9 +VERSION = 5.0 # paths PREFIX = /usr/local diff --git a/drw.c b/drw.c @@ -95,6 +95,7 @@ drw_free(Drw *drw) { XFreePixmap(drw->dpy, drw->drawable); XFreeGC(drw->dpy, drw->gc); + drw_fontset_free(drw->fonts); free(drw); }