forked from qbittorrent/qBittorrent
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathqbittorrent.rc
More file actions
49 lines (42 loc) · 1.47 KB
/
Copy pathqbittorrent.rc
File metadata and controls
49 lines (42 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma code_page(65001) // UTF-8
IDI_ICON1 ICON "icons\qbittorrent.ico"
IDI_ICON2 ICON "icons\qbittorrent_file.ico"
#include <windows.h>
#include "base/version.h"
#define VER_FILEVERSION QBT_VERSION_MAJOR,QBT_VERSION_MINOR,QBT_VERSION_BUGFIX,QBT_VERSION_BUILD
#define VER_FILEVERSION_STR QBT_VERSION
#define VER_PRODUCTVERSION QBT_VERSION_MAJOR,QBT_VERSION_MINOR,QBT_VERSION_BUGFIX,QBT_VERSION_BUILD
#define VER_PRODUCTVERSION_STR QBT_VERSION
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
1 VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEFLAGSMASK VER_DEBUG
FILEFLAGS VER_DEBUG
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "The qBittorrent Project"
VALUE "FileDescription", "qBittorrent - A Bittorrent Client"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "qbittorrent"
VALUE "LegalCopyright", "Copyright ©2006-2021 The qBittorrent Project"
VALUE "OriginalFilename", "qbittorrent.exe"
VALUE "ProductName", "qBittorrent"
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END