Skip to content

Commit ff0d77b

Browse files
committed
Add PyInstaller version info file
1 parent 54afdae commit ff0d77b

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# UTF-8
2+
#
3+
# For more details about fixed file info 'ffi' see:
4+
# http://msdn.microsoft.com/en-us/library/ms646997.aspx
5+
VSVersionInfo(
6+
ffi=FixedFileInfo(
7+
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
8+
# Set not needed items to zero 0.
9+
filevers=(3, 7, 0, 0),
10+
prodvers=(3, 7, 0, 0),
11+
# Contains a bitmask that specifies the valid bits 'flags'r
12+
mask=0x0,
13+
# Contains a bitmask that specifies the Boolean attributes of the file.
14+
flags=0x0,
15+
# The operating system for which this file was designed.
16+
# 0x4 - NT and there is no need to change it.
17+
OS=0x0,
18+
# The general type of file.
19+
# 0x1 - the file is an application.
20+
fileType=0x0,
21+
# The function of the file.
22+
# 0x0 - the function is not defined for this fileType
23+
subtype=0x0,
24+
# Creation date and time stamp.
25+
date=(0, 0)
26+
),
27+
kids=[
28+
StringFileInfo(
29+
[
30+
StringTable(
31+
'040904b0',
32+
[StringStruct('FileDescription', 'System Monitor for USB smart screens like Turing'),
33+
StringStruct('ProductName', 'Turing System Monitor'),
34+
StringStruct('ProductVersion', '3.7.0'),
35+
StringStruct('FileVersion', '3.7.0')])
36+
]),
37+
VarFileInfo([VarStruct('Translation', [1033, 1200])])
38+
]
39+
)

0 commit comments

Comments
 (0)