Bumped version to 2.4

This commit is contained in:
Birunthan Mohanathas 2012-06-26 15:48:05 +03:00
parent 957b05441c
commit a0739c78f0
3 changed files with 10 additions and 14 deletions

View File

@ -5,7 +5,7 @@ set VCVARSALL=%PROGRAMFILES%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat
set MAKENSIS=%PROGRAMFILES%\NSIS\MakeNSIS.exe
set SUBWCREV=%PROGRAMFILES%\TortoiseSVN\bin\SubWCRev.exe
set GIT=%PROGRAMFILES%\Git\bin\git.exe
set VERSION=2.3.0
set VERSION=2.4.0
set REVISION=1
set ISBETA=true

View File

@ -3,9 +3,9 @@ namespace Rainmeter
public class Version
{
#if X64
public const string Informational = "2.3.0.1091 (64-bit)";
public const string Informational = "2.4.0.1499 (64-bit)";
#else
public const string Informational = "2.3.0.1091 (32-bit)";
public const string Informational = "2.4.0.1499 (32-bit)";
#endif
}
}

View File

@ -1,13 +1,9 @@
#pragma once
#define MAKE_VER(major, minor1, minor2) major * 1000000 + minor1 * 1000 + minor2
#define FILEVER 2,3,0,1091
#define PRODUCTVER 2,3,0,1091
#define STRFILEVER "2.3.0.1091"
#define STRPRODUCTVER "2.3.0.1091"
#define APPVERSION L"2.3.0"
#define RAINMETER_VERSION MAKE_VER(2, 3, 0)
const int revision_number = 1091;
#define FILEVER 2,4,0,1499
#define PRODUCTVER FILEVER
#define STRFILEVER "2.4.0.1499"
#define STRPRODUCTVER STRFILEVER
#define APPVERSION L"2.4.0"
#define RAINMETER_VERSION ((2 * 1000000) + (4 * 1000) + 0)
const int revision_number = 1499;
const bool revision_beta = true;