Ai
2 Star 42 Fork 14

参考答案开心否/PyQt5_example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
file_verison_info.txt 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
# UTF-8
#
# For more details about fixed file info 'ffi' see:
# http://msdn.microsoft.com/en-us/library/ms646997.aspx
VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers=(0, 0, 0, 2), # 文件版本
prodvers=(0, 0, 0, 2),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
flags=0x0,
# The operating system for which this file was designed.
# 0x4 - NT and there is no need to change it.
OS=0x4,
# The general type of file.
# 0x1 - the file is an application.
fileType=0x1, # 类型
# The function of the file.
# 0x0 - the function is not defined for this fileType
subtype=0x0,
# Creation date and time stamp.
date=(0, 0)
),
kids=[
StringFileInfo(
[
StringTable(
u'040904B0',
[StringStruct(u'CompanyName', u'wp19991'),
StringStruct(u'FileDescription', u'pyqt5_example'), # 文件说明
StringStruct(u'FileVersion', u'0.0.2'),
StringStruct(u'InternalName', u'SVN'),
StringStruct(u'LegalCopyright', u'wp19991@c'), #版权
StringStruct(u'OriginalFilename', u'pyqt5_example.exe'), #原始文件名
StringStruct(u'ProductName', u'pyqt5_example'), #产品名称
StringStruct(u'ProductVersion', u'0.0.1')]) #产品版本
]),
VarFileInfo([VarStruct(u'Translation', [2052, 1200])]) # 语言
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wp19991/PyQt5_example.git
git@gitee.com:wp19991/PyQt5_example.git
wp19991
PyQt5_example
PyQt5_example
main

搜索帮助