diff options
author | sabetts <sabetts> | 2006-04-21 22:56:00 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2006-04-21 22:56:00 +0000 |
commit | 8fc60a03e05c8ee6f1b0e8e2a50428af2f69f1d4 (patch) | |
tree | c4f6e406888db5e5c517dbca70c221d90267ecb6 | |
parent | da43881cd91e35267b094bab80873aa63ba4e109 (diff) | |
download | ratpoison-8fc60a03e05c8ee6f1b0e8e2a50428af2f69f1d4.zip |
(print_version): print build date
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | src/main.c | 4 |
4 files changed, 10 insertions, 3 deletions
@@ -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> @@ -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 @@ -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 @@ -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); } |