This commit is contained in:
Nav
2021-05-25 21:50:17 +01:00
parent c755094cd5
commit 77bcf07d6c
43 changed files with 103 additions and 49 deletions

View File

@@ -156,8 +156,8 @@ int Application::presentHelpText() {
throw Exception("Failed to open help file - please report this issue at https://bloom.oscillate.io/report-issue");
}
std::cout << "Bloom v" << Application::VERSION_STR << std::endl;
std::cout << QTextStream(&helpFile).readAll().toUtf8().constData() << std::endl;
std::cout << "Bloom v" << Application::VERSION_STR << "\n";
std::cout << QTextStream(&helpFile).readAll().toUtf8().constData() << "\n";
return EXIT_SUCCESS;
}
@@ -170,8 +170,8 @@ int Application::presentVersionText() {
std::cout << "DEBUG BUILD - Compilation timestamp: " << __DATE__ << " " << __TIME__ << "\n";
#endif
std::cout << "https://bloom.oscillate.io/" << "\n";
std::cout << "Nav Mohammed" << std::endl;
std::cout << "https://bloom.oscillate.io/\n";
std::cout << "Nav Mohammed\n";
return EXIT_SUCCESS;
}