diff --git a/src/external/blizzard-archive-library b/src/external/blizzard-archive-library index 2a150d76..6cac3304 160000 --- a/src/external/blizzard-archive-library +++ b/src/external/blizzard-archive-library @@ -1 +1 @@ -Subproject commit 2a150d766abc11885cf71111ffee852558b6a86f +Subproject commit 6cac3304b272ee6688e88573057e94e085d35caf diff --git a/src/noggit/project/ApplicationProject.h b/src/noggit/project/ApplicationProject.h index 30d3fb2f..d5e6aa1c 100755 --- a/src/noggit/project/ApplicationProject.h +++ b/src/noggit/project/ApplicationProject.h @@ -351,21 +351,29 @@ namespace Noggit::Project return {}; } + // Log << "Client Version: " << static_cast(project->ClientData->version()) << std::endl; + + Log << "Client Locale: " << project->ClientData->locale_name() << std::endl; + + for (auto const loaded_achive : *project->ClientData->loadedArchives()) + { + Log << "Loaded client Archive: " << loaded_achive->path() << std::endl; + } - // QSettings settings; - // bool modern_features = settings.value("modern_features", false).toBool(); - bool modern_features = _configuration->modern_features; - if (modern_features) - { - Log << "Modern Features Enabled" << std::endl; - loadExtraData(project.value()); - } - else - { - Log << "Modern Features Disabled" << std::endl; - } - return std::make_shared(project.value()); - } + // QSettings settings; + // bool modern_features = settings.value("modern_features", false).toBool(); + bool modern_features = _configuration->modern_features; + if (modern_features) + { + Log << "Modern Features Enabled" << std::endl; + loadExtraData(project.value()); + } + else + { + Log << "Modern Features Disabled" << std::endl; + } + return std::make_shared(project.value()); + } void loadExtraData(NoggitProject& project); };