Finished updating to 2.5

This commit is contained in:
Brian Ferguson 2012-11-23 12:09:56 -07:00
parent f82ad78db9
commit ed9f27ba38
2 changed files with 6 additions and 6 deletions

View File

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

View File

@ -1,9 +1,9 @@
#pragma once
#define FILEVER 2,4,0,1678
#define FILEVER 2,5,0,1678
#define PRODUCTVER FILEVER
#define STRFILEVER "2.4.0.1678"
#define STRFILEVER "2.5.0.1678"
#define STRPRODUCTVER STRFILEVER
#define APPVERSION L"2.4.0"
#define RAINMETER_VERSION ((2 * 1000000) + (4 * 1000) + 0)
#define APPVERSION L"2.5.0"
#define RAINMETER_VERSION ((2 * 1000000) + (5 * 1000) + 0)
const int revision_number = 1678;
const bool revision_beta = true;