Finish updating version to 3.2.0

This commit is contained in:
Brian Ferguson 2014-07-22 00:25:59 -04:00
parent 9a473a6362
commit 731475f8c8
2 changed files with 7 additions and 7 deletions

View File

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

View File

@ -1,9 +1,9 @@
#pragma once
#define FILEVER 3,1,0,2289
#define FILEVER 3,2,0,2302
#define PRODUCTVER FILEVER
#define STRFILEVER "3.1.0.2289"
#define STRFILEVER "3.2.0.2302"
#define STRPRODUCTVER STRFILEVER
#define APPVERSION L"3.1.0"
#define RAINMETER_VERSION ((3 * 1000000) + (1 * 1000) + 0)
const int revision_number = 2289;
#define APPVERSION L"3.2.0"
#define RAINMETER_VERSION ((3 * 1000000) + (2 * 1000) + 0)
const int revision_number = 2302;
const bool revision_beta = true;