Update Version.{h,cs} files for 3.0.1

This commit is contained in:
Birunthan Mohanathas 2013-10-15 17:16:43 +03:00
parent ca41a4575c
commit d6e26401ca
2 changed files with 7 additions and 7 deletions

View File

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

View File

@ -1,9 +1,9 @@
#pragma once #pragma once
#define FILEVER 3,0,0,1847 #define FILEVER 3,0,1,2121
#define PRODUCTVER FILEVER #define PRODUCTVER FILEVER
#define STRFILEVER "3.0.0.1847" #define STRFILEVER "3.0.1.2121"
#define STRPRODUCTVER STRFILEVER #define STRPRODUCTVER STRFILEVER
#define APPVERSION L"3.0.0" #define APPVERSION L"3.0.1"
#define RAINMETER_VERSION ((3 * 1000000) + (0 * 1000) + 0) #define RAINMETER_VERSION ((3 * 1000000) + (0 * 1000) + 1)
const int revision_number = 1847; const int revision_number = 2121;
const bool revision_beta = true; const bool revision_beta = true;