Skip to content

Commit

Permalink
Version bump v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chchwy committed Sep 25, 2018
1 parent 3ed1dfd commit 4ec4811
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.2.0</string>
<string>0.6.2.1</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 " 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 ;
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 " RC1")
#define PENCIL_WINDOW_TITLE QString("[*]Pencil2D v%1").arg(APP_VERSION)
#endif


Expand Down

0 comments on commit 4ec4811

Please sign in to comment.