mirror of
https://github.com/barry-ran/QtScrcpy.git
synced 2025-04-20 03:25:02 +00:00
add:windows平台版本说明
This commit is contained in:
parent
b1f0a07b95
commit
c24fbd9638
3 changed files with 42 additions and 22 deletions
|
@ -1,34 +1,37 @@
|
|||
#include "winver.h"
|
||||
//#include "../version/version.h"
|
||||
IDI_ICON1 ICON DISCARDABLE "QtScrcpy.ico"
|
||||
/*
|
||||
#include "winres.h"
|
||||
#include "../util/version.h"
|
||||
|
||||
// 图标
|
||||
IDI_ICON1 ICON PRODUCT_ICON
|
||||
|
||||
// 版本信息
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION CCTALK_VERSION_RES
|
||||
PRODUCTVERSION CCTALK_VERSION_RES
|
||||
FILEFLAGS 0x0L
|
||||
FILEVERSION FILE_VERSION
|
||||
PRODUCTVERSION PRODUCT_VERSION
|
||||
FILEFLAGSMASK 0x3fL
|
||||
FILEOS 0x00040004L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS 0x40004L
|
||||
FILETYPE 0x1L
|
||||
FILESUBTYPE 0x0L
|
||||
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "000004b0"
|
||||
BLOCK "080404b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Personal"
|
||||
VALUE "FileDescription", "QtScrcpy"
|
||||
VALUE "FileVersion", "1.0.0.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) Barry 2018-2028. All rights reserved."
|
||||
VALUE "InternalName", "QtScrcpy"
|
||||
VALUE "OriginalFilename", "QtScrcpy.exe"
|
||||
VALUE "ProductName", "QtScrcpy"
|
||||
VALUE "ProductVersion", "1.0.0.0"
|
||||
VALUE "CompanyName", COMPANY_NAME
|
||||
VALUE "FileDescription", FILE_DESCRIPTION
|
||||
VALUE "FileVersion", FILE_VERSION_STR
|
||||
VALUE "LegalCopyright", LEGAL_COPYRIGHT
|
||||
VALUE "ProductName", PRODUCT_NAME
|
||||
VALUE "ProductVersion", PRODUCT_VERSION_STR
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x0, 1200
|
||||
VALUE "Translation", 0x804, 1200
|
||||
END
|
||||
END
|
||||
*/
|
||||
END
|
|
@ -2,7 +2,8 @@ include ($$PWD/mousetap/mousetap.pri)
|
|||
|
||||
HEADERS += \
|
||||
$$PWD/compat.h \
|
||||
$$PWD/bufferutil.h
|
||||
$$PWD/bufferutil.h \
|
||||
$$PWD/version.h
|
||||
|
||||
SOURCES += \
|
||||
$$PWD/bufferutil.cpp
|
||||
|
|
16
QtScrcpy/util/version.h
Normal file
16
QtScrcpy/util/version.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef VERSION_H
|
||||
#define VERSION_H
|
||||
|
||||
#define PRODUCT_ICON "QtScrcpy.ico" // 图标
|
||||
|
||||
#define FILE_VERSION 1,0,1,0 // 文件版本
|
||||
#define FILE_VERSION_STR "1.0.1.0"
|
||||
#define PRODUCT_VERSION 1,0,1,0 // 产品版本
|
||||
#define PRODUCT_VERSION_STR "1.0.1.0"
|
||||
#define COMPANY_NAME "RanKun"
|
||||
#define INTERNAL_NAME "QtScrcpy.exe"
|
||||
#define FILE_DESCRIPTION "android real time projection software" // 文件说明
|
||||
#define LEGAL_COPYRIGHT "Copyright (C) RanKun 2018-2028. All rights reserved." // 版权
|
||||
#define PRODUCT_NAME "QtScrcpy" // 产品名称
|
||||
|
||||
#endif // VERSION_H
|
Loading…
Add table
Reference in a new issue