Skip to content

Commit

Permalink
Bump version to 3.1.2 beta 5
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjuddington committed Sep 11, 2017
1 parent 5afeba9 commit d350950
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build/msvc/SLADE.rc
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ BEGIN
BLOCK "0c0904b0"
BEGIN
VALUE "FileDescription", "SLADE"
VALUE "FileVersion", "3.1.2 Beta 4"
VALUE "FileVersion", "3.1.2 Beta 5"
VALUE "InternalName", "SLADE.exe"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "SLADE.exe"
VALUE "ProductName", "SLADE"
VALUE "ProductVersion", "3.1.2 Beta 4"
VALUE "ProductVersion", "3.1.2 Beta 5"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions dist/makebuild.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$version = "3120_b4"
$versionstring = "3.1.2 Beta 4"
$version = "3120_b5"
$versionstring = "3.1.2 Beta 5"

# Check for 7-zip install
$7zpath = "$env:ProgramFiles\7-Zip\7z.exe"
Expand Down
4 changes: 2 additions & 2 deletions src/Application/SLADEWxApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ namespace Global
{
string error = "";

int beta_num = 4;
int beta_num = 5;
int version_num = 3120;
string version = "3.1.2 Beta 4";
string version = "3.1.2 Beta 5";
#ifdef GIT_DESCRIPTION
string sc_rev = GIT_DESCRIPTION;
#else
Expand Down
4 changes: 2 additions & 2 deletions win_installer/SLADE.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SLADE"
#define MyAppVersion "3.1.2 Beta 1"
#define VersionNum "3120_b1"
#define MyAppVersion "3.1.2"
#define VersionNum "3120"
#define MyAppURL "http://slade.mancubus.net"
#define MyAppExeName "SLADE.exe"

Expand Down

0 comments on commit d350950

Please sign in to comment.