wmcdplay: Centralize version number.
Previously, the wmcdplay version number was found in numerous places. To ease future releases, it now appears only in configure.ac.
This commit is contained in:
parent
f59aef482d
commit
9e71c28003
|
@ -1,5 +1,4 @@
|
||||||
wmcdplay - A cd player designed for WindowMaker
|
wmcdplay - A cd player designed for WindowMaker
|
||||||
05/09/98 Release 1.0 Beta1
|
|
||||||
Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
||||||
This software comes with ABSOLUTELY NO WARRANTY
|
This software comes with ABSOLUTELY NO WARRANTY
|
||||||
This software is free software, and you are welcome to redistribute it
|
This software is free software, and you are welcome to redistribute it
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
wmcdplay - A cd player designed for WindowMaker
|
wmcdplay - A cd player designed for WindowMaker
|
||||||
05/09/98 Release 1.0 Beta1
|
|
||||||
Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
||||||
This software comes with ABSOLUTELY NO WARRANTY
|
This software comes with ABSOLUTELY NO WARRANTY
|
||||||
This software is free software, and you are welcome to redistribute it
|
This software is free software, and you are welcome to redistribute it
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
// cdctl.h - CDCtl class provides easy control of cd audio functions
|
// cdctl.h - CDCtl class provides easy control of cd audio functions
|
||||||
// 05/09/98 Release 1.0 Beta1
|
|
||||||
// Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
// Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
||||||
// This software comes with ABSOLUTELY NO WARRANTY
|
// This software comes with ABSOLUTELY NO WARRANTY
|
||||||
// This software is free software, and you are welcome to redistribute it
|
// This software is free software, and you are welcome to redistribute it
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
// cdctl.h - CDCtl class provides easy control of cd audio functions
|
// cdctl.h - CDCtl class provides easy control of cd audio functions
|
||||||
// 05/09/98 Release 1.0 Beta1
|
|
||||||
// Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
// Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
||||||
// This software comes with ABSOLUTELY NO WARRANTY
|
// This software comes with ABSOLUTELY NO WARRANTY
|
||||||
// This software is free software, and you are welcome to redistribute it
|
// This software is free software, and you are welcome to redistribute it
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
// wmcdplay - A cd player designed for WindowMaker
|
// wmcdplay - A cd player designed for WindowMaker
|
||||||
// 05/09/98 Release 1.0 Beta1
|
|
||||||
// Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
// Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>
|
||||||
// This software comes with ABSOLUTELY NO WARRANTY
|
// This software comes with ABSOLUTELY NO WARRANTY
|
||||||
// This software is free software, and you are welcome to redistribute it
|
// This software is free software, and you are welcome to redistribute it
|
||||||
|
@ -354,7 +353,7 @@ unsigned long mixColor(char *colorname1, int prop1, char *colorname2, int prop2)
|
||||||
void scanArgs(int argc, char **argv){
|
void scanArgs(int argc, char **argv){
|
||||||
for(int i=1;i<argc;i++){
|
for(int i=1;i<argc;i++){
|
||||||
if(strcmp(argv[i], "-h")==0 || strcmp(argv[i], "-help")==0 || strcmp(argv[i], "--help")==0){
|
if(strcmp(argv[i], "-h")==0 || strcmp(argv[i], "-help")==0 || strcmp(argv[i], "--help")==0){
|
||||||
fprintf(stderr, "wmcdplay - A cd player designed for WindowMaker\n05/09/98 Release 1.0 Beta1\n");
|
fprintf(stderr, "wmcdplay - A cd player designed for WindowMaker\nRelease "VERSION"\n");
|
||||||
fprintf(stderr, "Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>\n");
|
fprintf(stderr, "Copyright (C) 1998 Sam Hawker <shawkie@geocities.com>\n");
|
||||||
fprintf(stderr, "This software comes with ABSOLUTELY NO WARRANTY\n");
|
fprintf(stderr, "This software comes with ABSOLUTELY NO WARRANTY\n");
|
||||||
fprintf(stderr, "This software is free software, and you are welcome to redistribute it\n");
|
fprintf(stderr, "This software is free software, and you are welcome to redistribute it\n");
|
||||||
|
|
Loading…
Reference in a new issue