mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-26 14:58:51 -06:00
Update OpenSpace version to 0.1.1 prerelease-6
Do not print the SGCT . waiting message rename libtorrent.config to Launcher.config
This commit is contained in:
@@ -40,7 +40,7 @@ include(${OPENSPACE_EXT_DIR}/ghoul/ext/CopySharedLibraries.cmake)
|
||||
test_compiler_compatibility()
|
||||
cleanup_project()
|
||||
set_build_output_directories()
|
||||
configure_openspace_version(0 1 0 "prerelease-5")
|
||||
configure_openspace_version(0 1 1 "prerelease-6")
|
||||
|
||||
option(OPENSPACE_WARNINGS_AS_ERRORS "Treat warnings as errors" OFF)
|
||||
option(OPENSPACE_DISABLE_EXTERNAL_WARNINGS "Disable warnings in external libraries" ON)
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
namespace {
|
||||
const std::string _loggerCat = "SyncWidget";
|
||||
|
||||
const std::string _configurationFile = "libtorrent.config";
|
||||
const std::string _configurationFile = "Launcher.config";
|
||||
|
||||
const int nColumns = 3;
|
||||
|
||||
|
||||
@@ -260,6 +260,10 @@ void mainDecodeFun() {
|
||||
|
||||
void mainLogCallback(const char* msg){
|
||||
std::string message = msg;
|
||||
if (message == ".")
|
||||
// We don't want the empty '.' message that SGCT sends while it is waiting for
|
||||
// connections from other network nodes
|
||||
return;
|
||||
// Remove the trailing \n that is passed along
|
||||
LINFOC("SGCT", message.substr(0, std::max<size_t>(message.size() - 1, 0)));
|
||||
}
|
||||
|
||||
Submodule ext/ghoul updated: f87ad95260...310b4ece36
Reference in New Issue
Block a user