mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
82eb3ed03f
- Added new proxy setting switch: /auto, /none /auto: use IE setting /none: direct connection Example: ProxyServer=/none - Added global proxy setting. If proxy setting is defined in Rainmeter.data, use it as a global proxy. Default value is /auto. Example: [WebParser.dll] ProxyServer=example.net:8080 If ProxyServer= is not defined or is empty string in WebParser measure, use a global proxy. If an individual proxy setting is defined in WebParser measure, use it instead of a global proxy.
41 lines
884 B
Plaintext
41 lines
884 B
Plaintext
#include <VerRsrc.h>
|
|
#include "../../Version.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version
|
|
//
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION 1,14,0,0
|
|
PRODUCTVERSION PRODUCTVER
|
|
FILEFLAGSMASK 0x17L
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT_UNKNOWN
|
|
{
|
|
BLOCK "StringFileInfo"
|
|
{
|
|
BLOCK "040904E4"
|
|
{
|
|
VALUE "FileVersion", "1.14.0.0"
|
|
VALUE "LegalCopyright", "© 2010 - Rainy"
|
|
VALUE "ProductName", "Rainmeter"
|
|
#ifdef _WIN64
|
|
VALUE "ProductVersion", STRPRODUCTVER " (64-bit)"
|
|
#else
|
|
VALUE "ProductVersion", STRPRODUCTVER " (32-bit)"
|
|
#endif //_WIN64
|
|
}
|
|
}
|
|
BLOCK "VarFileInfo"
|
|
{
|
|
VALUE "Translation", 0x409, 1252
|
|
}
|
|
}
|