Skip to content

Commit

Permalink
Bump version to 3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjuddington committed Dec 26, 2018
1 parent 908c5ac commit 0306b63
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build/msvc/SLADE.rc
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ WXCURSOR_PENCIL CURSOR DISCARDABLE "wx/msw/pencil.cur"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,1,3
PRODUCTVERSION 3,1,3
FILEVERSION 3,1,4
PRODUCTVERSION 3,1,4
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -90,12 +90,12 @@ BEGIN
BLOCK "0c0904b0"
BEGIN
VALUE "FileDescription", "SLADE"
VALUE "FileVersion", "3.1.3"
VALUE "FileVersion", "3.1.4"
VALUE "InternalName", "SLADE.exe"
VALUE "LegalCopyright", "Copyright (C) 2018"
VALUE "OriginalFilename", "SLADE.exe"
VALUE "ProductName", "SLADE"
VALUE "ProductVersion", "3.1.3"
VALUE "ProductVersion", "3.1.4"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion dist/makebuild.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = "3.1.3"
$version = "3.1.4"
$rev_short = Invoke-Expression "git.exe rev-parse --short HEAD"

# Check for 7-zip install
Expand Down
2 changes: 1 addition & 1 deletion src/Application/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ bool exiting = false;
std::thread::id main_thread_id;

// Version
Version version_num{ 3, 1, 3, 0 };
Version version_num{ 3, 1, 4, 0 };

// Directory paths
string dir_data = "";
Expand Down
2 changes: 1 addition & 1 deletion win_installer/SLADE.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SLADE"
#define MyAppVersion "3.1.3"
#define MyAppVersion "3.1.4"
#define MyAppURL "http://slade.mancubus.net"
#define MyAppExeName "SLADE.exe"

Expand Down

0 comments on commit 0306b63

Please sign in to comment.