X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=cmd%2Fshow%2Fversion.pl;h=661b0f27a97212a22946abbbb7ab3cbc105bc511;hb=c3505bcfc922cd712bad2c20b3479cf8d1dc54fe;hp=f6184a09f5b78d20495844295426e8b65db76918;hpb=b0f75ae15722922dc8f341a2de79106326ff7575;p=spider.git diff --git a/cmd/show/version.pl b/cmd/show/version.pl index f6184a09..661b0f27 100644 --- a/cmd/show/version.pl +++ b/cmd/show/version.pl @@ -3,12 +3,13 @@ # # Copyright (c) 1998 Dirk Koopman G1TLH # -# $Id$ +# # my @out; - -push @out, "DX Spider Cluster version $main::version"; -push @out, "Copyright (c) 1998 Dirk Koopman G1TLH"; +my ($year) = (gmtime($main::systime))[5]; +$year += 1900; +push @out, "DX Spider Cluster version $main::version (build $main::subversion.$main::build) on \u$^O"; +push @out, "Copyright (c) 1998-$year Dirk Koopman G1TLH"; return (1, @out);