mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-20 22:15:41 +00:00
To avoid confusion, the master code should have the version number in the title bar. The version number shown in the master should be the version number of the next (unreleased version) followed by the suffix rc1. As an example, the current official released version is 0.26 so in the master title bar the version should be 0.27rc1, i.e. the release candidate for the proposed release 0.27.
18 lines
775 B
C
18 lines
775 B
C
/**
|
|
* version_string and program_name are used by siege
|
|
* and configure; author_name and email_address are
|
|
* used by configure to dynamically assign those values
|
|
* to documentation files.
|
|
*/
|
|
const char *version_string = "0.26";
|
|
const char *program_name = "nwipe";
|
|
const char *author_name = "Martijn van Brummelen";
|
|
const char *email_address = "git@brumit.nl";
|
|
const char *years = "2019";
|
|
const char *copyright = "Copyright Darik Horn <dajhorn-dban@vanadac.com>\n\
|
|
Modifications to original dwipe Copyright Andy Beverley <andy@andybev.com>\n\
|
|
This is free software; see the source for copying conditions.\n\
|
|
There is NO warranty; not even for MERCHANTABILITY or FITNESS\n\
|
|
FOR A PARTICULAR PURPOSE.\n";
|
|
const char *banner = "nwipe 0.27rc1";
|