Increment version number

This commit is contained in:
Barry Kane 2023-02-15 22:16:12 +00:00
parent f5cb3ad16e
commit ff281e5ce6
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// Silverkin Industries Comm-Link Client, Public Demonstration Sample Alpha 0.4.
// Silverkin Industries Comm-Link Client, Public Demonstration Sample Alpha 0.5.
// PROJECT CODENAME: WHAT DO I PAY YOU FOR? | Level-3 Clearance.
// Barry Kane, 2021
#include <netdb.h>
@ -181,7 +181,7 @@ int main(int argc, char ** argv)
bool chatLogging = false, gameLogging = false;
// Print welcome message:
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK CLIENT ====--\nVersion Alpha 0.4\n", 5000);
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK CLIENT ====--\nVersion Alpha 0.5\n", 5000);
// Parse command-line options:
while ((currentopt = getopt(argc, argv, "i:c:g:p:d:")) != -1)

View File

@ -1,4 +1,4 @@
// Silverkin Industries Comm-Link Server, Engineering Sample Alpha 0.4.
// Silverkin Industries Comm-Link Server, Engineering Sample Alpha 0.5
// PROJECT CODENAME: WHAT DO I PAY YOU FOR? | Level-3 Clearance.
// Barry Kane, 2021
#include <time.h>
@ -122,7 +122,7 @@ int main(int argc, char ** argv)
// Give an intro: Display the Silverkin Industries logo and splash text.
slowPrint(logostring, delay);
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK SERVER ====--\nVersion Alpha 0.4\n", delay);
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK SERVER ====--\nVersion Alpha 0.5\n", delay);
// Seed random number generator from the current time:
srandom((unsigned)time(&currentTime));