diff --git a/CMakeLists.txt b/CMakeLists.txt index a3c4879..030ca5c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ message(STATUS "Using CMake version ${CMAKE_VERSION}") cmake_minimum_required(VERSION 3.1.0) project(libremines - VERSION "1.9.0" + VERSION "1.9.1" DESCRIPTION " A Free/Libre and Open Source Software Qt based Minesweeper game available for GNU/Linux, FreeBSD and Windows systems. " HOMEPAGE_URL "https://github.com/Bollos00/LibreMines" LANGUAGES "CXX" diff --git a/src/libreminesgui.cpp b/src/libreminesgui.cpp index 64f9d83..cdcd6cf 100644 --- a/src/libreminesgui.cpp +++ b/src/libreminesgui.cpp @@ -694,7 +694,7 @@ void LibreMinesGui::vCreateGUI(const int width, const int height) this, &LibreMinesGui::SLOT_showAboutDialog); connect(actionAboutQt, &QAction::triggered, - [this](){ QMessageBox::aboutQt(this, "LibreMines"); }); + [this](){ QMessageBox::aboutQt(this, "About Qt"); }); connect(actionGitHubHomePage, &QAction::triggered, [](){ QDesktopServices::openUrl(QUrl("https://github.com/Bollos00/LibreMines")); }); @@ -1544,7 +1544,7 @@ void LibreMinesGui::SLOT_showAboutDialog() "Get the source code of LibreMines on\n") + "<" + QString(LIBREMINES_PROJECT_HOMEPAGE_URL) + ">"; - QMessageBox::about(this, "LibreMines", text); + QMessageBox::about(this, "About LibreMines", text); } void LibreMinesGui::SLOT_showHighScores()