I was asked for ASCII art, and I deliver, thus, ASCII art;

pull/51/head
Bryan Biedenkapp 2 years ago
parent c3f9b69454
commit 9dadc06130

@ -97,6 +97,19 @@ typedef unsigned long long ulong64_t;
#define __BUILD__ __DATE__ " " __TIME__
#define __BANNER__ "\r\n" \
" . . \r\n" \
"8 888888888o. `8.`888b ,8' ,8. ,8. \r\n" \
"8 8888 `^888. `8.`888b ,8' ,888. ,888. \r\n" \
"8 8888 `88.`8.`888b ,8' .`8888. .`8888. \r\n" \
"8 8888 `88 `8.`888b ,8' ,8.`8888. ,8.`8888. \r\n" \
"8 8888 88 `8.`888b ,8' ,8'8.`8888,8^8.`8888. \r\n" \
"8 8888 88 `8.`888b ,8' ,8' `8.`8888' `8.`8888. \r\n" \
"8 8888 ,88 `8.`888b8' ,8' `8.`88' `8.`8888. \r\n" \
"8 8888 ,88' `8.`888' ,8' `8.`' `8.`8888. \r\n" \
"8 8888 ,o88P' `8.`8' ,8' `8 `8.`8888. \r\n" \
"8 888888888P' `8.` ,8' ` `8.`8888. \r\n"
#define HOST_SW_API
#define DEFAULT_CONF_FILE "config.yml"

@ -141,10 +141,10 @@ int HostFNE::run()
::close(STDERR_FILENO);
}
::LogInfo(__PROG_NAME__ " %s (built %s)", __VER__, __BUILD__);
::LogInfo("Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.");
::LogInfo("Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others");
::LogInfo(">> Fixed Network Equipment");
::LogInfo(__BANNER__ "\r\n" __PROG_NAME__ " " __VER__ " (built " __BUILD__ ")\r\n" \
"Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.\r\n" \
"Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others\r\n" \
">> Fixed Network Equipment\r\n");
// read base parameters from configuration
ret = readParams();

@ -199,10 +199,10 @@ int Host::run()
::close(STDERR_FILENO);
}
::LogInfo(__PROG_NAME__ " %s (built %s)", __VER__, __BUILD__);
::LogInfo("Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.");
::LogInfo("Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others");
::LogInfo(">> Modem Controller");
::LogInfo(__BANNER__ "\r\n" __PROG_NAME__ " " __VER__ " (built " __BUILD__ ")\r\n" \
"Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.\r\n" \
"Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others\r\n" \
">> Modem Controller\r\n");
// read base parameters from configuration
ret = readParams();

@ -71,10 +71,10 @@ int HostCal::run(int argc, char **argv)
return 1;
}
::LogInfo(__PROG_NAME__ " %s (built %s)", __VER__, __BUILD__);
::LogInfo("Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.");
::LogInfo("Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others");
::LogInfo(">> Modem Calibration");
::LogInfo(__BANNER__ "\r\n" __PROG_NAME__ " " __VER__ " (built " __BUILD__ ")\r\n" \
"Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.\r\n" \
"Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others\r\n" \
">> Modem Calibration\r\n");
yaml::Node systemConf = m_conf["system"];
m_startupDuplex = m_duplex = systemConf["duplex"].as<bool>(true);

@ -185,10 +185,10 @@ int HostSetup::run(int argc, char** argv)
return 1;
}
::LogInfo(__PROG_NAME__ " %s (built %s)", __VER__, __BUILD__);
::LogInfo("Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.");
::LogInfo("Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others");
::LogInfo(">> Modem Setup");
::LogInfo(__PROG_NAME__ " " __VER__ " (built " __BUILD__ ")\r\n" \
"Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.\r\n" \
"Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others\r\n" \
">> Modem Setup\r\n");
// setup the finalcut tui
SetupApplication app{this, argc, argv};

@ -465,6 +465,7 @@ public:
m_aboutItem.addCallback("clicked", this, [&]() {
const FString line(2, UniChar::BoxDrawingsHorizontal);
FMessageBox info("About", line + __PROG_NAME__ + line + L"\n\n"
L"" + __BANNER__
L"Version " + __VER__ + L"\n\n"
L"Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors." + L"\n"
L"Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others",

@ -198,10 +198,10 @@ int main(int argc, char** argv)
return 1;
}
::LogInfo(__PROG_NAME__ " %s (built %s)", __VER__, __BUILD__);
::LogInfo("Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.");
::LogInfo("Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others");
::LogInfo(">> Host Monitor");
::LogInfo(__PROG_NAME__ " " __VER__ " (built " __BUILD__ ")\r\n" \
"Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors.\r\n" \
"Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others\r\n" \
">> Host Monitor\r\n");
try {
ret = yaml::Parse(g_conf, g_iniFile.c_str());

@ -96,6 +96,7 @@ public:
m_aboutItem.addCallback("clicked", this, [&]() {
const FString line(2, UniChar::BoxDrawingsHorizontal);
FMessageBox info("About", line + __PROG_NAME__ + line + L"\n\n"
L"" + __BANNER__ + L"\n"
L"Version " + __VER__ + L"\n\n"
L"Copyright (c) 2017-2024 Bryan Biedenkapp, N2PLL and DVMProject (https://github.com/dvmproject) Authors." + L"\n"
L"Portions Copyright (c) 2015-2021 by Jonathan Naylor, G4KLX and others",

Loading…
Cancel
Save

Powered by TurnKey Linux.