chore: bump version to 0.11.0

Update version strings in about dialog and window title.

Signed-off-by: Zephyron <zephyron@citron-emu.org>
This commit is contained in:
Zephyron
2025-11-11 22:35:49 +10:00
parent 69f3225fa8
commit 4491abcdce
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
AboutDialog::AboutDialog(QWidget* parent) AboutDialog::AboutDialog(QWidget* parent)
: QDialog(parent), ui{std::make_unique<Ui::AboutDialog>()} { : QDialog(parent), ui{std::make_unique<Ui::AboutDialog>()} {
const auto citron_build_version = "citron | 0.10.0"; const auto citron_build_version = "citron | 0.11.0";
ui->setupUi(this); ui->setupUi(this);
// Try and request the icon from Qt theme (Linux?) // Try and request the icon from Qt theme (Linux?)

View File

@@ -5279,7 +5279,7 @@ void GMainWindow::MigrateConfigFiles() {
void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_view title_version, void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_view title_version,
std::string_view gpu_vendor) { std::string_view gpu_vendor) {
const auto window_title = "citron | 0.10.0"; const auto window_title = "citron | 0.11.0";
if (title_name.empty()) { if (title_name.empty()) {
setWindowTitle(QString::fromStdString(window_title)); setWindowTitle(QString::fromStdString(window_title));