diff options
author | arg@mig29 <unknown> | 2007-01-02 15:38:44 +0100 |
---|---|---|
committer | arg@mig29 <unknown> | 2007-01-02 15:38:44 +0100 |
commit | 771c0cb6072b3e90d4ed7007073552736c49e655 (patch) | |
tree | dee1e6320fecb2b8cab96e5fb1e230e50b3f3674 | |
parent | 43a19425af43f89f44dea85ad8cfe10d6317048d (diff) |
next version will contain updated copyright notice
-rw-r--r-- | LICENSE | 4 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | config.mk | 2 | ||||
-rw-r--r-- | dmenu.h | 2 | ||||
-rw-r--r-- | draw.c | 2 | ||||
-rw-r--r-- | main.c | 6 | ||||
-rw-r--r-- | util.c | 2 |
7 files changed, 10 insertions, 10 deletions
@@ -1,7 +1,7 @@ | |||
1 | MIT/X Consortium License | 1 | MIT/X Consortium License |
2 | 2 | ||
3 | (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | 3 | (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com> |
4 | (C)opyright MMVI Sander van Dijk <a dot h dot vandijk at gmail dot com> | 4 | (C)opyright MMVII Sander van Dijk <a dot h dot vandijk at gmail dot com> |
5 | 5 | ||
6 | Permission is hereby granted, free of charge, to any person obtaining a | 6 | Permission is hereby granted, free of charge, to any person obtaining a |
7 | copy of this software and associated documentation files (the "Software"), | 7 | copy of this software and associated documentation files (the "Software"), |
@@ -1,5 +1,5 @@ | |||
1 | # dmenu - dynamic menu | 1 | # dmenu - dynamic menu |
2 | # (C)opyright MMVI Anselm R. Garbe | 2 | # (C)opyright MMVII Anselm R. Garbe |
3 | 3 | ||
4 | include config.mk | 4 | include config.mk |
5 | 5 | ||
@@ -1,5 +1,5 @@ | |||
1 | # dmenu version | 1 | # dmenu version |
2 | VERSION = 1.8 | 2 | VERSION = 1.9 |
3 | 3 | ||
4 | # Customize below to fit your system | 4 | # Customize below to fit your system |
5 | 5 | ||
@@ -1,4 +1,4 @@ | |||
1 | /* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | 1 | /* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com> |
2 | * See LICENSE file for license details. | 2 | * See LICENSE file for license details. |
3 | */ | 3 | */ |
4 | 4 | ||
@@ -1,4 +1,4 @@ | |||
1 | /* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com> | 1 | /* (C)opyright MMIV-MMVII Anselm R. Garbe <garbeam at gmail dot com> |
2 | * See LICENSE file for license details. | 2 | * See LICENSE file for license details. |
3 | */ | 3 | */ |
4 | #include "dmenu.h" | 4 | #include "dmenu.h" |
@@ -1,5 +1,5 @@ | |||
1 | /* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | 1 | /* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com> |
2 | * (C)opyright MMVI Sander van Dijk <a dot h dot vandijk at gmail dot com> | 2 | * (C)opyright MMVII Sander van Dijk <a dot h dot vandijk at gmail dot com> |
3 | * See LICENSE file for license details. | 3 | * See LICENSE file for license details. |
4 | */ | 4 | */ |
5 | #include "dmenu.h" | 5 | #include "dmenu.h" |
@@ -373,7 +373,7 @@ main(int argc, char *argv[]) { | |||
373 | if(++i < argc) timeout.tv_sec = atoi(argv[i]); | 373 | if(++i < argc) timeout.tv_sec = atoi(argv[i]); |
374 | } | 374 | } |
375 | else if(!strncmp(argv[i], "-v", 3)) { | 375 | else if(!strncmp(argv[i], "-v", 3)) { |
376 | fputs("dmenu-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout); | 376 | fputs("dmenu-"VERSION", (C)opyright MMVII Anselm R. Garbe\n", stdout); |
377 | exit(EXIT_SUCCESS); | 377 | exit(EXIT_SUCCESS); |
378 | } | 378 | } |
379 | else | 379 | else |
@@ -1,4 +1,4 @@ | |||
1 | /* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | 1 | /* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com> |
2 | * See LICENSE file for license details. | 2 | * See LICENSE file for license details. |
3 | */ | 3 | */ |
4 | #include "dmenu.h" | 4 | #include "dmenu.h" |