| 492 | } |
| 493 | |
| 494 | void LauncherWindow::showModInfo(const ModInfo &info) |
| 495 | { |
| 496 | ui->modName->setText(QString::fromStdString(info.getName())); |
| 497 | ui->modAuthor->setText(QString::fromStdString(info.getAuthor())); |
| 498 | ui->modVersion->setText(QString::fromStdString(info.getVersion())); |
| 499 | ui->modDescription->setText(QString::fromStdString(info.getDescription())); |
| 500 | |
| 501 | auto linkText = format("<a href=\"%s\">%s</a>", info.getLink(), info.getLink()); |
| 502 | |
| 503 | ui->modLink->setText(QString::fromStdString(linkText)); |
| 504 | } |
| 505 | |
| 506 | void LauncherWindow::rebuildModList() |
| 507 | { |
no test coverage detected