diff --git a/src/platform/qt/CMakeLists.txt b/src/platform/qt/CMakeLists.txt index b385c2ce7..5b7ba5264 100644 --- a/src/platform/qt/CMakeLists.txt +++ b/src/platform/qt/CMakeLists.txt @@ -57,9 +57,9 @@ if (APPLE AND MACOS_BUILD_APP_BUNDLE) set(MACOSX_BUNDLE_ICON_FILE "NanoBoyAdvance.icns") set(MACOSX_BUNDLE_GUI_IDENTIFIER "com.github.nba-emu.NanoBoyAdvance") set(MACOSX_BUNDLE_INFO_STRING "Game Boy Advance emulator") - set(MACOSX_BUNDLE_SHORT_VERSION_STRING "1.7") - set(MACOSX_BUNDLE_LONG_VERSION_STRING "1.7") - set(MACOSX_BUNDLE_BUNDLE_VERSION "1.7") + set(MACOSX_BUNDLE_SHORT_VERSION_STRING "1.7.1") + set(MACOSX_BUNDLE_LONG_VERSION_STRING "1.7.1") + set(MACOSX_BUNDLE_BUNDLE_VERSION "1.7.1") list(APPEND RESOURCES rc/NanoBoyAdvance.icns) add_executable(NanoBoyAdvance-Qt MACOSX_BUNDLE ${SOURCES} ${HEADERS} ${RESOURCES}) diff --git a/src/platform/qt/rc/app.rc b/src/platform/qt/rc/app.rc index 68deb89b9..01671b20b 100644 --- a/src/platform/qt/rc/app.rc +++ b/src/platform/qt/rc/app.rc @@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "app.ico" VS_VERSION_INFO VERSIONINFO -FILEVERSION 1,7 -PRODUCTVERSION 1,7 +FILEVERSION 1,7,1 +PRODUCTVERSION 1,7,1 BEGIN BLOCK "StringFileInfo" BEGIN @@ -13,12 +13,12 @@ BEGIN BEGIN VALUE "CompanyName", "fleroviux" VALUE "FileDescription", "NanoBoyAdvance" - VALUE "FileVersion", "1.7" + VALUE "FileVersion", "1.7.1" VALUE "InternalName", "NanoBoyAdvance.exe" VALUE "LegalCopyright", "(c) 2015 - 2023 fleroviux" VALUE "OriginalFilename", "NanoBoyAdvance.exe" VALUE "ProductName", "NanoBoyAdvance" - VALUE "ProductVersion", "1.7" + VALUE "ProductVersion", "1.7.1" END END diff --git a/src/platform/qt/src/widget/main_window.cpp b/src/platform/qt/src/widget/main_window.cpp index 25c8fb1cc..f2e40e9fc 100644 --- a/src/platform/qt/src/widget/main_window.cpp +++ b/src/platform/qt/src/widget/main_window.cpp @@ -28,7 +28,7 @@ MainWindow::MainWindow( QApplication* app, QWidget* parent ) : QMainWindow(parent) { - setWindowTitle("NanoBoyAdvance 1.7"); + setWindowTitle("NanoBoyAdvance 1.7.1"); setAcceptDrops(true); screen = std::make_shared(this, config); @@ -61,9 +61,9 @@ MainWindow::MainWindow( connect(this, &MainWindow::UpdateFrameRate, this, [this](int fps) { if(config->window.show_fps) { auto percent = fps / 59.7275 * 100; - setWindowTitle(QString::fromStdString(fmt::format("NanoBoyAdvance 1.7 [{} fps | {:.2f}%]", fps, percent))); + setWindowTitle(QString::fromStdString(fmt::format("NanoBoyAdvance 1.7.1 [{} fps | {:.2f}%]", fps, percent))); } else { - setWindowTitle("NanoBoyAdvance 1.7"); + setWindowTitle("NanoBoyAdvance 1.7.1"); } }, Qt::QueuedConnection); @@ -641,7 +641,7 @@ void MainWindow::Stop() { game_loaded = false; RenderSaveStateMenus(); - setWindowTitle("NanoBoyAdvance 1.7"); + setWindowTitle("NanoBoyAdvance 1.7.1"); UpdateMenuBarVisibility(); }