From ae8373d4ce4cddd6632893623cd86d68eb12b84c Mon Sep 17 00:00:00 2001 From: Barry Kane Date: Wed, 15 Sep 2021 00:12:05 +0100 Subject: [PATCH] Incremented Version Number. - Incremented version number in preperation for merge. --- src/SilverMUDClient.c | 2 +- src/SilverMUDServer.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SilverMUDClient.c b/src/SilverMUDClient.c index daca94a..f64bb66 100644 --- a/src/SilverMUDClient.c +++ b/src/SilverMUDClient.c @@ -87,7 +87,7 @@ int main(int argc, char **argv) signal(SIGINT, sigintHandler); // Print welcome message: - slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK CLIENT ====--\nVersion Alpha 0.2\n", 5000); + slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK CLIENT ====--\nVersion Alpha 0.3\n", 5000); // Give me a socket, and make sure it's working: sockfd = socket(AF_INET, SOCK_STREAM, 0); diff --git a/src/SilverMUDServer.c b/src/SilverMUDServer.c index 9433d3c..c2bde11 100644 --- a/src/SilverMUDServer.c +++ b/src/SilverMUDServer.c @@ -1,4 +1,4 @@ -// Silverkin Industries Comm-Link Server, Engineering Sample Alpha 0.1. +// Silverkin Industries Comm-Link Server, Engineering Sample Alpha 0.3. // PROJECT CODENAME: WHAT DO I PAY YOU FOR? | Level-3 Clearance. // Barry Kane, 2021 #include @@ -38,7 +38,7 @@ int main() // Give an intro: Display the Silverkin Industries logo and splash text. slowPrint(logostring, 3000); - slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK SERVER ====--\nVersion Alpha 0.2\n", 5000); + slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK SERVER ====--\nVersion Alpha 0.3\n", 5000); // Initialize the sockets to 0, so we don't crash. for (int index = 0; index < maxClients; index++)