Skip to content

Commit

Permalink
Bump version to 3.1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjuddington committed Jul 25, 2016
1 parent aae9b65 commit d9648ea
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build/msvc/SLADE.rc
Expand Up @@ -60,8 +60,8 @@ IDI_ICON1 ICON "slade.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,1,1,2
PRODUCTVERSION 3,1,1,2
FILEVERSION 3,1,1,3
PRODUCTVERSION 3,1,1,3
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -77,12 +77,12 @@ BEGIN
BLOCK "0c0904b0"
BEGIN
VALUE "FileDescription", "SLADE"
VALUE "FileVersion", "3.1.1.2"
VALUE "FileVersion", "3.1.1.3"
VALUE "InternalName", "SLADE.exe"
VALUE "LegalCopyright", "Copyright (C) 2016"
VALUE "OriginalFilename", "SLADE.exe"
VALUE "ProductName", "SLADE"
VALUE "ProductVersion", "3.1.1.2"
VALUE "ProductVersion", "3.1.1.3"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions dist/makebuild.ps1
@@ -1,5 +1,5 @@
$version = "3112"
$versionstring = "3.1.1.2"
$version = "3113"
$versionstring = "3.1.1.3"

# Check for 7-zip install
$7zpath = "$env:ProgramFiles\7-Zip\7z.exe"
Expand Down
4 changes: 2 additions & 2 deletions src/Application/MainApp.cpp
Expand Up @@ -87,8 +87,8 @@ namespace Global
string error = "";

int beta_num = 0;
int version_num = 3112;
string version = "3.1.1.2";
int version_num = 3113;
string version = "3.1.1.3";
#ifdef GIT_DESCRIPTION
string sc_rev = GIT_DESCRIPTION;
#else
Expand Down
4 changes: 2 additions & 2 deletions win_installer/SLADE.iss
Expand Up @@ -2,8 +2,8 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SLADE"
#define MyAppVersion "3.1.1.2"
#define VersionNum "3112"
#define MyAppVersion "3.1.1.3"
#define VersionNum "3113"
#define MyAppURL "http://slade.mancubus.net"
#define MyAppExeName "SLADE.exe"

Expand Down

0 comments on commit d9648ea

Please sign in to comment.