From e96b66e9f84b400facf135ef41e0ce26fe4dfc06 Mon Sep 17 00:00:00 2001 From: Christian Kratky Date: Fri, 17 May 2019 20:57:56 +0200 Subject: [PATCH] Update splash screen for MQTTnet.Server. --- Source/MQTTnet.Server/Program.cs | 43 +++++++++++++++----------------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/Source/MQTTnet.Server/Program.cs b/Source/MQTTnet.Server/Program.cs index 3e8a0a0..cb773ce 100644 --- a/Source/MQTTnet.Server/Program.cs +++ b/Source/MQTTnet.Server/Program.cs @@ -27,45 +27,42 @@ namespace MQTTnet.Server private static void PrintLogo() { Console.ResetColor(); - Console.ForegroundColor = ConsoleColor.White; - Console.BackgroundColor = ConsoleColor.Red; + Console.ForegroundColor = ConsoleColor.Red; const string LogoText = -@"| | -| __ __ ____ _______ _______ _ _____ | -| | \/ |/ __ \__ __|__ __| | | / ____| | -| | \ / | | | | | | | |_ __ ___| |_ | (___ ___ _ ____ _____ _ __ | -| | |\/| | | | | | | | | '_ \ / _ \ __| \___ \ / _ \ '__\ \ / / _ \ '__| | -| | | | | |__| | | | | | | | | __/ |_ ____) | __/ | \ V / __/ | | -| |_| |_|\___\_\ |_| |_|_| |_|\___|\__| |_____/ \___|_| \_/ \___|_| | -| | -| |"; +@" + +███╗ ███╗ ██████╗ ████████╗████████╗███╗ ██╗███████╗████████╗ ███████╗███████╗██████╗ ██╗ ██╗███████╗██████╗ +████╗ ████║██╔═══██╗╚══██╔══╝╚══██╔══╝████╗ ██║██╔════╝╚══██╔══╝ ██╔════╝██╔════╝██╔══██╗██║ ██║██╔════╝██╔══██╗ +██╔████╔██║██║ ██║ ██║ ██║ ██╔██╗ ██║█████╗ ██║ ███████╗█████╗ ██████╔╝██║ ██║█████╗ ██████╔╝ +██║╚██╔╝██║██║▄▄ ██║ ██║ ██║ ██║╚██╗██║██╔══╝ ██║ ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██╔══╝ ██╔══██╗ +██║ ╚═╝ ██║╚██████╔╝ ██║ ██║ ██║ ╚████║███████╗ ██║ ███████║███████╗██║ ██║ ╚████╔╝ ███████╗██║ ██║ +╚═╝ ╚═╝ ╚══▀▀═╝ ╚═╝ ╚═╝ ╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚══════╝╚═╝ ╚═╝ + +"; Console.WriteLine(LogoText); Console.ResetColor(); Console.WriteLine(); Console.ForegroundColor = ConsoleColor.White; - Console.WriteLine(@" - -- The official MQTT server implementation of MQTTnet -- - Copyright (c) 2017-2019 The MQTTnet Team"); + Console.WriteLine("The official MQTT server implementation of MQTTnet"); + Console.WriteLine("Copyright (c) 2017-2019 The MQTTnet Team"); Console.ForegroundColor = ConsoleColor.Blue; - Console.WriteLine(@" - https://github.com/chkr1011/MQTTnet"); + Console.WriteLine(@"https://github.com/chkr1011/MQTTnet"); Console.ForegroundColor = ConsoleColor.White; Console.WriteLine($@" - Version: {Assembly.GetExecutingAssembly().GetName().Version} - License: MIT (read LICENSE file) - Sponsoring: https://opencollective.com/mqttnet - Support: https://github.com/chkr1011/MQTTnet/issues - Docs: https://github.com/chkr1011/MQTTnet/wiki/MQTTnetServer +Version: {Assembly.GetExecutingAssembly().GetName().Version} +License: MIT (read LICENSE file) +Sponsoring: https://opencollective.com/mqttnet +Support: https://github.com/chkr1011/MQTTnet/issues +Docs: https://github.com/chkr1011/MQTTnet/wiki/MQTTnetServer "); - Console.BackgroundColor = ConsoleColor.White; Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine(" ! THIS IS AN ALPHA VERSION! IT IS NOT RECOMMENDED TO USE IT FOR ANY DIFFERENT PURPOSE THAN TESTING OR EVALUATING!"); - Console.WriteLine(); Console.ResetColor(); + Console.WriteLine(); } } } \ No newline at end of file