Updating all build files and processes to create 1.4 beta starting point.

Also adding file: TextFuncUF16.nsh to Rainstaller folder for UNICODE support.
If you download Build.py, be sure to set the paths to executables to your paths before using.
This commit is contained in:
jsmorley 2010-10-12 15:01:48 +00:00
parent b53f0d9f6b
commit 1ee9137ea2
3 changed files with 7 additions and 7 deletions

View File

@ -28,8 +28,8 @@ LANGUAGE LANG_FINNISH, SUBLANG_DEFAULT
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,3,0,550 FILEVERSION 1,4,0,562
PRODUCTVERSION 1,3,0,550 PRODUCTVERSION 1,4,0,562
FILEFLAGSMASK 0x17L FILEFLAGSMASK 0x17L
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -45,12 +45,12 @@ BEGIN
BLOCK "040b04b0" BLOCK "040b04b0"
BEGIN BEGIN
VALUE "FileDescription", "Rainmeter - A Customizable Resource Meter" VALUE "FileDescription", "Rainmeter - A Customizable Resource Meter"
VALUE "FileVersion", "1, 3, 0, 550" VALUE "FileVersion", "1, 4, 0, 562"
VALUE "InternalName", "Rainmeter" VALUE "InternalName", "Rainmeter"
VALUE "LegalCopyright", "Copyright (C) 2010 - Rainy" VALUE "LegalCopyright", "Copyright (C) 2010 - Rainy"
VALUE "OriginalFilename", "Rainmeter.exe" VALUE "OriginalFilename", "Rainmeter.exe"
VALUE "ProductName", "Rainmeter" VALUE "ProductName", "Rainmeter"
VALUE "ProductVersion", "1, 3, 0, 550" VALUE "ProductVersion", "1, 4, 0, 562"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -32,13 +32,13 @@
#define MAKE_VER(major, minor1, minor2) major * 1000000 + minor1 * 1000 + minor2 #define MAKE_VER(major, minor1, minor2) major * 1000000 + minor1 * 1000 + minor2
#define APPNAME L"Rainmeter" #define APPNAME L"Rainmeter"
#define APPVERSION L"1.3" #define APPVERSION L"1.4"
#ifdef _WIN64 #ifdef _WIN64
#define APPBITS L"(64-bit)" #define APPBITS L"(64-bit)"
#else #else
#define APPBITS L"(32-bit)" #define APPBITS L"(32-bit)"
#endif #endif
#define RAINMETER_VERSION MAKE_VER(1, 3, 0) #define RAINMETER_VERSION MAKE_VER(1, 4, 0)
void RainmeterRefresh(HWND, const char* arg); void RainmeterRefresh(HWND, const char* arg);
void RainmeterRefreshApp(HWND, const char* arg); void RainmeterRefreshApp(HWND, const char* arg);

View File

@ -1,3 +1,3 @@
#pragma once #pragma once
const int revision_number = 550; const int revision_number = 562;
const bool revision_beta = true; const bool revision_beta = true;