Skip to content

Commit

Permalink
Bump version to 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fleroviux committed May 15, 2023
1 parent 680de47 commit 5a14f63
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions src/platform/qt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down
8 changes: 4 additions & 4 deletions src/platform/qt/rc/app.rc
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
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
BLOCK "040904E4"
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

Expand Down
8 changes: 4 additions & 4 deletions src/platform/qt/src/widget/main_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<Screen>(this, config);
Expand Down Expand Up @@ -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);

Expand Down Expand Up @@ -641,7 +641,7 @@ void MainWindow::Stop() {
game_loaded = false;
RenderSaveStateMenus();

setWindowTitle("NanoBoyAdvance 1.7");
setWindowTitle("NanoBoyAdvance 1.7.1");

UpdateMenuBarVisibility();
}
Expand Down

0 comments on commit 5a14f63

Please sign in to comment.