Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
22cf9626c7 | |||
9e13ecabe8 |
1
.hgtags
1
.hgtags
@ -42,3 +42,4 @@ e4c81a78ffbad6ba4d1ad119cc654da6eca63a4c 3.2
|
||||
78f9f72cc9c6bdb022ff8908486b61ef5e242aad 4.0
|
||||
844587572673cf6326c3f61737264a46b728fc0a 4.1
|
||||
72749a826cab0baa805620e44a22e54486c97a4e 4.1.1
|
||||
379813a051f03a1b20bdbfdc2d2d1d2d794ace48 4.2
|
||||
|
2
Makefile
2
Makefile
@ -29,7 +29,7 @@ clean:
|
||||
dist: clean
|
||||
@echo creating dist tarball
|
||||
@mkdir -p dmenu-${VERSION}
|
||||
@cp LICENSE Makefile README config.mk dmenu.1 dmenu.c dmenu_path.c dmenu_run dmenu-${VERSION}
|
||||
@cp LICENSE Makefile README config.mk dmenu.1 dmenu.c draw.c draw.h dmenu_path.c dmenu_run dmenu-${VERSION}
|
||||
@tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
|
||||
@gzip dmenu-${VERSION}.tar
|
||||
@rm -rf dmenu-${VERSION}
|
||||
|
@ -1,5 +1,5 @@
|
||||
# dmenu version
|
||||
VERSION = 4.2
|
||||
VERSION = 4.2.1
|
||||
|
||||
# Customize below to fit your system
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
/* See LICENSE file for copyright and license details. */
|
||||
#include <dirent.h>
|
||||
#include <limits.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
Reference in New Issue
Block a user