Incremented version numbering in preperation for merge to master.
- Incremented version numbering to Alpha 0.4.
This commit is contained in:
parent
d9497679cb
commit
ca8ba5e410
|
@ -1,4 +1,4 @@
|
||||||
// Silverkin Industries Comm-Link Client, Public Demonstration Sample Alpha 0.3.
|
// Silverkin Industries Comm-Link Client, Public Demonstration Sample Alpha 0.4.
|
||||||
// PROJECT CODENAME: WHAT DO I PAY YOU FOR? | Level-3 Clearance.
|
// PROJECT CODENAME: WHAT DO I PAY YOU FOR? | Level-3 Clearance.
|
||||||
// Barry Kane, 2021
|
// Barry Kane, 2021
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
|
@ -148,7 +148,7 @@ int main(int argc, char ** argv)
|
||||||
bool chatLogging = false, gameLogging = false;
|
bool chatLogging = false, gameLogging = false;
|
||||||
|
|
||||||
// Print welcome message:
|
// Print welcome message:
|
||||||
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK CLIENT ====--\nVersion Alpha 0.3\n", 5000);
|
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK CLIENT ====--\nVersion Alpha 0.4\n", 5000);
|
||||||
|
|
||||||
// Parse command-line options:
|
// Parse command-line options:
|
||||||
while ((currentopt = getopt(argc, argv, "i:c:g:p:d:")) != -1)
|
while ((currentopt = getopt(argc, argv, "i:c:g:p:d:")) != -1)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Silverkin Industries Comm-Link Server, Engineering Sample Alpha 0.3.
|
// Silverkin Industries Comm-Link Server, Engineering Sample Alpha 0.4.
|
||||||
// PROJECT CODENAME: WHAT DO I PAY YOU FOR? | Level-3 Clearance.
|
// PROJECT CODENAME: WHAT DO I PAY YOU FOR? | Level-3 Clearance.
|
||||||
// Barry Kane, 2021
|
// Barry Kane, 2021
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
@ -98,7 +98,7 @@ int main(int argc, char ** argv)
|
||||||
|
|
||||||
// Give an intro: Display the Silverkin Industries logo and splash text.
|
// Give an intro: Display the Silverkin Industries logo and splash text.
|
||||||
slowPrint(logostring, 3000);
|
slowPrint(logostring, 3000);
|
||||||
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK SERVER ====--\nVersion Alpha 0.3\n", 5000);
|
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK SERVER ====--\nVersion Alpha 0.4\n", 5000);
|
||||||
|
|
||||||
// Seed random number generator from the current time:
|
// Seed random number generator from the current time:
|
||||||
srandom((unsigned)time(¤tTime));
|
srandom((unsigned)time(¤tTime));
|
||||||
|
|
Loading…
Reference in New Issue