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:
Alexander Bock
2015-07-06 13:44:23 +02:00
parent a25b64c8b9
commit f60dfac1cf
4 changed files with 7 additions and 3 deletions

View File

@@ -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)

View File

@@ -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;

View File

@@ -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)));
}