|
|
@ -68,6 +68,7 @@ void ConfigureService::SetConfiguration() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
std::pair<QString, QString> ConfigureService::BCATDownloadEvents() { |
|
|
std::pair<QString, QString> ConfigureService::BCATDownloadEvents() { |
|
|
|
|
|
#ifdef YUZU_ENABLE_BOXCAT
|
|
|
std::optional<std::string> global; |
|
|
std::optional<std::string> global; |
|
|
std::map<std::string, Service::BCAT::EventStatus> map; |
|
|
std::map<std::string, Service::BCAT::EventStatus> map; |
|
|
const auto res = Service::BCAT::Boxcat::GetStatus(global, map); |
|
|
const auto res = Service::BCAT::Boxcat::GetStatus(global, map); |
|
|
@ -106,6 +107,10 @@ std::pair<QString, QString> ConfigureService::BCATDownloadEvents() { |
|
|
.arg(FormatEventStatusString(value)); |
|
|
.arg(FormatEventStatusString(value)); |
|
|
} |
|
|
} |
|
|
return {QStringLiteral("Current Boxcat Events"), std::move(out)}; |
|
|
return {QStringLiteral("Current Boxcat Events"), std::move(out)}; |
|
|
|
|
|
#else
|
|
|
|
|
|
return {QStringLiteral("Current Boxcat Events"), |
|
|
|
|
|
tr("There are currently no events on boxcat.")}; |
|
|
|
|
|
#endif
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void ConfigureService::OnBCATImplChanged() { |
|
|
void ConfigureService::OnBCATImplChanged() { |
|
|
|