diff --git a/app/data/Info.plist b/app/data/Info.plist index c8a0dbf4f..59810cf11 100644 --- a/app/data/Info.plist +++ b/app/data/Info.plist @@ -62,7 +62,7 @@ CFBundleSignature PC2D CFBundleVersion - 0.6.2.0 + 0.6.2.1 LSApplicationCategoryType public.app-category.graphics-design NSHighResolutionCapable diff --git a/app/src/aboutdialog.cpp b/app/src/aboutdialog.cpp index f1c79e3c1..edb6a3221 100644 --- a/app/src/aboutdialog.cpp +++ b/app/src/aboutdialog.cpp @@ -40,7 +40,7 @@ AboutDialog::~AboutDialog() void AboutDialog::init() { QStringList devText; - devText << tr("Version: %1", "Version Number in About Dialog").arg(APP_VERSION " RC1"); + devText << tr("Version: %1", "Version Number in About Dialog").arg(APP_VERSION); #if defined(GIT_EXISTS) && defined(NIGHTLY_BUILD) devText << "commit: " S__GIT_COMMIT_HASH ; devText << "date: " S__GIT_TIMESTAMP ; diff --git a/app/src/mainwindow2.cpp b/app/src/mainwindow2.cpp index aed17cc85..492597765 100644 --- a/app/src/mainwindow2.cpp +++ b/app/src/mainwindow2.cpp @@ -83,7 +83,7 @@ GNU General Public License for more details. #ifdef NIGHTLY_BUILD #define PENCIL_WINDOW_TITLE QString("[*]Pencil2D - Nightly Build %1").arg( BUILD_DATE ) #else -#define PENCIL_WINDOW_TITLE QString("[*]Pencil2D v%1").arg(APP_VERSION " RC1") +#define PENCIL_WINDOW_TITLE QString("[*]Pencil2D v%1").arg(APP_VERSION) #endif