-
Notifications
You must be signed in to change notification settings - Fork 529
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Icon created using the following command: convert ios/Images.xcassets/AppIcon.appiconset/1024.png -define icon:auto-resize=256,64,48,32,16 res/vesc.ico Signed-off-by: Dado Mista <dadomista@gmail.com>
- Loading branch information
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
IDI_ICON1 ICON "res/vesc.ico" | ||
|
||
#include <windows.h> | ||
|
||
#define VER_FILEVERSION 1,0,0,0 | ||
#define VER_FILEVERSION_STR "1.0.0.0\0" | ||
#define VER_PRODUCTVERSION 6,0,0 | ||
#define VER_PRODUCTVERSION_STR "6.0.0\0" | ||
#define VER_FILEDESCRIPTION_STR "VESC Tool" | ||
#define VER_INTERNALNAME_STR "VESC tool" | ||
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2016-2022, Benjamin Vedder" | ||
#define VER_ORIGINALFILENAME_STR "vesc_tool_6.00.exe" | ||
#define VER_PRODUCTNAME_STR "VESC Tool" | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION VER_FILEVERSION | ||
PRODUCTVERSION VER_PRODUCTVERSION | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904E4" | ||
BEGIN | ||
VALUE "FileDescription", VER_FILEDESCRIPTION_STR | ||
VALUE "FileVersion", VER_FILEVERSION_STR | ||
VALUE "InternalName", VER_INTERNALNAME_STR | ||
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR | ||
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR | ||
VALUE "ProductName", VER_PRODUCTNAME_STR | ||
VALUE "ProductVersion", VER_PRODUCTVERSION_STR | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END |