Skip to content

Commit

Permalink
Bump version to 3.1.2 beta 2
Browse files Browse the repository at this point in the history
Also show the full 3-part SFML version in the log
  • Loading branch information
sirjuddington committed Jun 6, 2017
1 parent 3577f20 commit 9f27c50
Show file tree
Hide file tree
Showing 4 changed files with 9 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 1"
VALUE "FileVersion", "3.1.2 Beta 2"
VALUE "InternalName", "SLADE.exe"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "SLADE.exe"
VALUE "ProductName", "SLADE"
VALUE "ProductVersion", "3.1.2 Beta 1"
VALUE "ProductVersion", "3.1.2 Beta 2"
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_b1"
$versionstring = "3.1.2 Beta 1"
$version = "3120_b2"
$versionstring = "3.1.2 Beta 2"

# 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 @@ -53,9 +53,9 @@ namespace Global
{
string error = "";

int beta_num = 1;
int beta_num = 2;
int version_num = 3120;
string version = "3.1.2 Beta 1";
string version = "3.1.2 Beta 2";
#ifdef GIT_DESCRIPTION
string sc_rev = GIT_DESCRIPTION;
#else
Expand Down
5 changes: 3 additions & 2 deletions src/General/Log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,13 @@ void Log::init()
info(S_FMT("Written by Simon Judd, 2008-%s", year));
#ifdef SFML_VERSION_MAJOR
info(S_FMT(
"Compiled with wxWidgets %i.%i.%i and SFML %i.%i",
"Compiled with wxWidgets %i.%i.%i and SFML %i.%i.%i",
wxMAJOR_VERSION,
wxMINOR_VERSION,
wxRELEASE_NUMBER,
SFML_VERSION_MAJOR,
SFML_VERSION_MINOR
SFML_VERSION_MINOR,
SFML_VERSION_PATCH
));
#else
info(S_FMT(
Expand Down

0 comments on commit 9f27c50

Please sign in to comment.