mirror of
https://github.com/stasenso/Puer.git
synced 2026-06-26 21:32:42 +03:00
Add: app icon
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
|
||||
#define IDI_ICON 1020
|
||||
|
||||
IDI_ICON ICON "icon.ico"
|
||||
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 202 KiB |
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity
|
||||
version="1.0.0.0"
|
||||
processorArchitecture="amd64"
|
||||
name="MASM32.Text Editor.bigicon"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Your application description here.</description>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Microsoft.Windows.Common-Controls"
|
||||
version="6.0.0.0"
|
||||
processorArchitecture="amd64"
|
||||
publicKeyToken="6595b64144ccf1df"
|
||||
language="*"
|
||||
/>
|
||||
</dependentAssembly>
|
||||
</dependency> </assembly>
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
// *************************************************************************************************
|
||||
|
||||
#include "\masm64\include64\resource.h"
|
||||
|
||||
// *************************************************************************************************
|
||||
|
||||
1 24 "manifest.xml" // manifest file
|
||||
|
||||
#include "dlgs.rc"
|
||||
|
||||
// *************************************************************************************************
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1, 0, 0, 0
|
||||
PRODUCTVERSION 1, 0, 0, 0
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_APP
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "041904B0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Friends of Svetopaper\000"
|
||||
VALUE "FileDescription", "Pu'er tea executable file\000"
|
||||
VALUE "FileVersion", "1.0\000"
|
||||
VALUE "InternalName", "Pu'er tea\000"
|
||||
VALUE "OriginalFilename", "Puer.exe\000"
|
||||
VALUE "LegalCopyright", "\251 2025 Friends of Svetopaper\000"
|
||||
VALUE "ProductName", "Pu'er tea\000"
|
||||
VALUE "ProductVersion", "1.0\000"
|
||||
END
|
||||
END
|
||||
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x419, 0x4B0
|
||||
END
|
||||
END
|
||||
|
||||
// *************************************************************************************************
|
||||
Binary file not shown.
Reference in New Issue
Block a user