-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathversion_info.txt
More file actions
53 lines (52 loc) · 2.15 KB
/
version_info.txt
File metadata and controls
53 lines (52 loc) · 2.15 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
50
51
52
53
# UTF-8
#
# Windows Version Info Resource for ScreenPrompt
# Used by PyInstaller to embed metadata in the executable
# This helps with AV trust and provides proper application info
#
# For more info see:
# https://pyinstaller.org/en/stable/spec-files.html#adding-binary-data
VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be 4-tuple of ints
# These will be updated by reading version.txt
filevers=(1, 0, 3, 0),
prodvers=(1, 0, 3, 0),
# Contains a bitmask that specifies the valid bits in FILEFLAGS
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file
# 0x0 = Release build
flags=0x0,
# Operating system for which this file was designed
# 0x40004 = VOS_NT_WINDOWS32
OS=0x40004,
# General type of file
# 0x1 = VFT_APP (Application)
fileType=0x1,
# Function of file (only valid for VFT_DRV and VFT_FONT)
subtype=0x0,
# Creation date and time stamp (not used)
date=(0, 0)
),
kids=[
StringFileInfo(
[
StringTable(
u'040904B0', # 0409 = US English, 04B0 = Unicode
[
StringStruct(u'CompanyName', u'ScreenPrompt'),
StringStruct(u'FileDescription', u'ScreenPrompt - AI-powered screen capture tool'),
StringStruct(u'FileVersion', u'1.0.3.0'),
StringStruct(u'InternalName', u'ScreenPrompt'),
StringStruct(u'LegalCopyright', u'Copyright (c) 2025 ScreenPrompt. MIT License.'),
StringStruct(u'OriginalFilename', u'ScreenPrompt.exe'),
StringStruct(u'ProductName', u'ScreenPrompt'),
StringStruct(u'ProductVersion', u'1.0.3.0'),
StringStruct(u'Comments', u'Open source AI prompt capture tool. https://github.com/dan0dev/ScreenPrompt'),
]
)
]
),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])]) # 1033 = US English, 1200 = Unicode
]
)