common: Parse Nightly/Canary build version
This commit is contained in:
parent
a50cd37aa6
commit
ddc97b15f4
6 changed files with 34 additions and 14 deletions
|
@ -13,7 +13,7 @@ AboutDialog::AboutDialog(QWidget* parent)
|
|||
ui->setupUi(this);
|
||||
ui->labelLogo->setPixmap(QIcon::fromTheme("citra").pixmap(200));
|
||||
ui->labelBuildInfo->setText(
|
||||
ui->labelBuildInfo->text().arg(Common::g_build_name, Common::g_scm_branch,
|
||||
ui->labelBuildInfo->text().arg(Common::g_build_fullname, Common::g_scm_branch,
|
||||
Common::g_scm_desc, QString(Common::g_build_date).left(10)));
|
||||
}
|
||||
|
||||
|
|
|
@ -137,8 +137,8 @@ GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) {
|
|||
ConnectWidgetEvents();
|
||||
|
||||
SetupUIStrings();
|
||||
NGLOG_INFO(Frontend, "Citra Version: {} | {}-{}", Common::g_build_name, Common::g_scm_branch,
|
||||
Common::g_scm_desc);
|
||||
NGLOG_INFO(Frontend, "Citra Version: {} | {}-{}", Common::g_build_fullname,
|
||||
Common::g_scm_branch, Common::g_scm_desc);
|
||||
|
||||
show();
|
||||
|
||||
|
@ -1407,8 +1407,8 @@ void GMainWindow::OnLanguageChanged(const QString& locale) {
|
|||
}
|
||||
|
||||
void GMainWindow::SetupUIStrings() {
|
||||
setWindowTitle(
|
||||
tr("Citra %1| %2-%3").arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc));
|
||||
setWindowTitle(tr("Citra %1| %2-%3")
|
||||
.arg(Common::g_build_fullname, Common::g_scm_branch, Common::g_scm_desc));
|
||||
}
|
||||
|
||||
void GMainWindow::SyncMenuUISettings() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue