summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsabetts <sabetts>2006-04-21 22:56:00 +0000
committersabetts <sabetts>2006-04-21 22:56:00 +0000
commit8fc60a03e05c8ee6f1b0e8e2a50428af2f69f1d4 (patch)
treec4f6e406888db5e5c517dbca70c221d90267ecb6
parentda43881cd91e35267b094bab80873aa63ba4e109 (diff)
downloadratpoison-8fc60a03e05c8ee6f1b0e8e2a50428af2f69f1d4.zip
(print_version): print build date
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog4
-rw-r--r--NEWS4
-rw-r--r--src/main.c4
4 files changed, 10 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index 2e4c1e2..adc9ece 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -37,3 +37,4 @@ Bernhard R. Link <brlink at debian dot org>
Tobias C. Rittweiler <tcr at freebits dot de>
Antti Nykänen <aon at iki dot fi>
rubikitch <rubikitch at ruby-lang org>
+Florian E.J. Fruth <fejf at rommel stw uni-erlangen de>
diff --git a/ChangeLog b/ChangeLog
index 161642e..80738db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-04-21 Shawn Betts <sabetts@vcn.bc.ca>
+
+ * src/main.c (print_version): print build date
+
2006-04-20 Shawn Betts <sabetts@vcn.bc.ca>
* src/actions.h: new command sfrestore
diff --git a/NEWS b/NEWS
index d9c5ae3..be8c238 100644
--- a/NEWS
+++ b/NEWS
@@ -7,11 +7,13 @@ are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.
* Changes since 1.4.0
-** support for i18n fonts
+** build date in ratpoison -v
** new command sfrestore
restores frame configurations for multiple screens.
+** support for i18n fonts
+
* Changes since 1.4.0-beta4
** new parameters in frame dumps
:screenh and :screenw specify the size of the screen the frame was
diff --git a/src/main.c b/src/main.c
index d04693b..45feeea 100644
--- a/src/main.c
+++ b/src/main.c
@@ -283,8 +283,8 @@ set_sig_handler (int sig, void (*action)(int))
void
print_version ()
{
- printf ("%s %s\n", PACKAGE, VERSION);
- printf ("Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts\n\n");
+ printf ("%s %s (built %s %s)\n", PACKAGE, VERSION, __DATE__, __TIME__);
+ printf ("Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Shawn Betts\n\n");
exit (EXIT_SUCCESS);
}