JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
next version will contain updated copyright notice
authorarg@mig29 <unknown>
Tue, 2 Jan 2007 14:37:58 +0000 (15:37 +0100)
committerarg@mig29 <unknown>
Tue, 2 Jan 2007 14:37:58 +0000 (15:37 +0100)
13 files changed:
LICENSE
Makefile
client.c
config.arg.h
config.default.h
config.mk
draw.c
dwm.h
event.c
main.c
tag.c
util.c
view.c

diff --git a/LICENSE b/LICENSE
index 67e22c3..d3a309d 100644 (file)
--- a/LICENSE
+++ b/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 MMVI Sander van Dijk <a dot h dot vandijk at gmail dot com>
+(C)opyright MMVII Anselm R. Garbe <garbeam 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
 copy of this software and associated documentation files (the "Software"),
 
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the "Software"),
index ad8ec08..2ce71cc 100644 (file)
--- a/Makefile
+++ b/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
 
index a02dda5..7c00f20 100644 (file)
--- a/client.c
+++ b/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.
  */
 #include "dwm.h"
  * See LICENSE file for license details.
  */
 #include "dwm.h"
index 612157b..dfb9dd2 100644 (file)
@@ -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.
  */
 
index 6c43eb2..a66c662 100644 (file)
@@ -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.
  */
 
index e1ba143..1d73f2b 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -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
 
diff --git a/draw.c b/draw.c
index 598a667..c4448db 100644 (file)
--- a/draw.c
+++ b/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.
  */
 #include "dwm.h"
  * See LICENSE file for license details.
  */
 #include "dwm.h"
diff --git a/dwm.h b/dwm.h
index 6a74539..4a6a30a 100644 (file)
--- a/dwm.h
+++ b/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.
  *
  * dynamic window manager is designed like any other X client as well. It is
  * See LICENSE file for license details.
  *
  * dynamic window manager is designed like any other X client as well. It is
diff --git a/event.c b/event.c
index b23fd3f..a6100e6 100644 (file)
--- a/event.c
+++ b/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.
  */
 #include "dwm.h"
  * See LICENSE file for license details.
  */
 #include "dwm.h"
diff --git a/main.c b/main.c
index 5a22982..4406b88 100644 (file)
--- a/main.c
+++ b/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;
 
        if(argc == 2 && !strncmp("-v", argv[1], 3)) {
        fd_set rd;
 
        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);
        }
        else if(argc != 1)
                exit(EXIT_SUCCESS);
        }
        else if(argc != 1)
diff --git a/tag.c b/tag.c
index e8ebd8e..ef9cb08 100644 (file)
--- a/tag.c
+++ b/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.
  */
 #include "dwm.h"
  * See LICENSE file for license details.
  */
 #include "dwm.h"
diff --git a/util.c b/util.c
index abd82de..3175ab2 100644 (file)
--- a/util.c
+++ b/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.
  */
 #include "dwm.h"
  * See LICENSE file for license details.
  */
 #include "dwm.h"
diff --git a/view.c b/view.c
index 9bc4e99..b3b412d 100644 (file)
--- a/view.c
+++ b/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.
  */
 #include "dwm.h"
  * See LICENSE file for license details.
  */
 #include "dwm.h"