mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Bumped version to 2.4
This commit is contained in:
parent
957b05441c
commit
a0739c78f0
@ -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
|
||||
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
|
18
Version.h
18
Version.h
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user