next version will contain updated copyright notice
This commit is contained in:
parent
beac539f31
commit
cb4aa5bc35
13 changed files with 15 additions and 15 deletions
4
LICENSE
4
LICENSE
|
@ -1,7 +1,7 @@
|
||||||
MIT/X Consortium License
|
MIT/X Consortium License
|
||||||
|
|
||||||
(C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
(C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
(C)opyright MMVI Sander van Dijk <a dot h dot vandijk at gmail dot com>
|
(C)opyright MMVII Sander van Dijk <a dot h dot vandijk at gmail dot com>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
copy of this software and associated documentation files (the "Software"),
|
copy of this software and associated documentation files (the "Software"),
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
||||||
# dwm - dynamic window manager
|
# dwm - dynamic window manager
|
||||||
# (C)opyright MMVI Anselm R. Garbe
|
# (C)opyright MMVII Anselm R. Garbe
|
||||||
|
|
||||||
include config.mk
|
include config.mk
|
||||||
|
|
||||||
|
|
2
client.c
2
client.c
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
#include "dwm.h"
|
#include "dwm.h"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# dwm version
|
# dwm version
|
||||||
VERSION = 2.8
|
VERSION = 2.9
|
||||||
|
|
||||||
# Customize below to fit your system
|
# Customize below to fit your system
|
||||||
|
|
||||||
|
|
2
draw.c
2
draw.c
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMIV-MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
#include "dwm.h"
|
#include "dwm.h"
|
||||||
|
|
2
dwm.h
2
dwm.h
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*
|
*
|
||||||
* dynamic window manager is designed like any other X client as well. It is
|
* dynamic window manager is designed like any other X client as well. It is
|
||||||
|
|
2
event.c
2
event.c
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
#include "dwm.h"
|
#include "dwm.h"
|
||||||
|
|
4
main.c
4
main.c
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ main(int argc, char *argv[]) {
|
||||||
fd_set rd;
|
fd_set rd;
|
||||||
|
|
||||||
if(argc == 2 && !strncmp("-v", argv[1], 3)) {
|
if(argc == 2 && !strncmp("-v", argv[1], 3)) {
|
||||||
fputs("dwm-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout);
|
fputs("dwm-"VERSION", (C)opyright MMVII Anselm R. Garbe\n", stdout);
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
else if(argc != 1)
|
else if(argc != 1)
|
||||||
|
|
2
tag.c
2
tag.c
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
#include "dwm.h"
|
#include "dwm.h"
|
||||||
|
|
2
util.c
2
util.c
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
#include "dwm.h"
|
#include "dwm.h"
|
||||||
|
|
2
view.c
2
view.c
|
@ -1,4 +1,4 @@
|
||||||
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
||||||
* See LICENSE file for license details.
|
* See LICENSE file for license details.
|
||||||
*/
|
*/
|
||||||
#include "dwm.h"
|
#include "dwm.h"
|
||||||
|
|
Loading…
Reference in a new issue