Skip to content

Commit

Permalink
Version bump v0.6.2 rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
chchwy committed Sep 17, 2018
1 parent b08cfce commit 58aaec2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/data/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<key>CFBundleSignature</key>
<string>PC2D</string>
<key>CFBundleVersion</key>
<string>0.6.2d</string>
<string>0.6.2.0</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.graphics-design</string>
<key>NSHighResolutionCapable</key>
Expand Down
2 changes: 1 addition & 1 deletion app/src/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ AboutDialog::~AboutDialog()
void AboutDialog::init()
{
QStringList devText;
devText << tr("Version: %1", "Version Number in About Dialog").arg(APP_VERSION);
devText << tr("Version: %1", "Version Number in About Dialog").arg(APP_VERSION " RC1");
#if defined(GIT_EXISTS) && defined(NIGHTLY_BUILD)
devText << "commit: " S__GIT_COMMIT_HASH ;
devText << "date: " S__GIT_TIMESTAMP ;
Expand Down
2 changes: 1 addition & 1 deletion app/src/mainwindow2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
#define PENCIL_WINDOW_TITLE QString("[*]Pencil2D v%1").arg(APP_VERSION " RC1")
#endif


Expand Down
2 changes: 1 addition & 1 deletion common.pri
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

VERSION = 0.6.1.1
VERSION = 0.6.2
DEFINES += APP_VERSION=\\\"$$VERSION\\\"

NIGHTLY {
Expand Down

0 comments on commit 58aaec2

Please sign in to comment.