-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Temporarily disable CLI support for Millennium on windows.
- Loading branch information
Showing
4 changed files
with
68 additions
and
7 deletions.
There are no files selected for viewing
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
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,48 @@ | ||
#include <windows.h> | ||
|
||
#define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD | ||
#define VER_PRERELEASE VS_FF_PRERELEASE | ||
|
||
#define VER_COMPANYNAME_STR "Steam Homebrew\0" | ||
#define VER_FILEDESCRIPTION_STR "A CLI utility for interacting with Millennium for Steam\0" | ||
#define VER_INTERNALNAME_STR "millennium.exe\0" | ||
#define VER_ORIGINALFILENAME_STR "millennium.exe\0" | ||
#define VER_LEGALCOPYRIGHT_STR "Steam Homebrew 2024\0" | ||
#define VER_LEGALTRADEMARKS1_STR "All Rights Reserved\0" | ||
#define VER_LEGALTRADEMARKS2_STR "\0" | ||
#define VER_PRODUCTNAME_STR "Millennium\0" | ||
|
||
#ifndef DEBUG | ||
#define VER_DEBUG 0 | ||
#else | ||
#define VER_DEBUG VS_FF_DEBUG | ||
#endif | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION 1,0,0,0 | ||
PRODUCTVERSION 1,0,0,0 | ||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | ||
FILEFLAGS (VER_PRIVATEBUILD | VER_PRERELEASE | VER_DEBUG) | ||
FILEOS VOS_NT_WINDOWS32 | ||
FILETYPE VFT_APP | ||
FILESUBTYPE VFT2_UNKNOWN | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904E4" | ||
BEGIN | ||
VALUE "CompanyName", VER_COMPANYNAME_STR | ||
VALUE "FileDescription", VER_FILEDESCRIPTION_STR | ||
VALUE "InternalName", VER_INTERNALNAME_STR | ||
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR | ||
VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR | ||
VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR | ||
VALUE "ProductName", VER_PRODUCTNAME_STR | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END |