diff --git a/premake5.lua b/premake5.lua index 904a283..28b696c 100644 --- a/premake5.lua +++ b/premake5.lua @@ -83,6 +83,7 @@ workspace "umamusume-localify" "./src/**.c", "./src/**.asm", "./src/**.def", + "./src/**.rc", } links { diff --git a/src/VERSIONINFO.rc b/src/VERSIONINFO.rc new file mode 100644 index 0000000..70f0ee2 --- /dev/null +++ b/src/VERSIONINFO.rc @@ -0,0 +1,47 @@ +// Microsoft Visual C++ generated resource script. +// +#include "resource.h" +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 1,13,0,0 + PRODUCTVERSION 1,13,0,0 + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "041204b0" + BEGIN + VALUE "LegalCopyright", "Copyright © Ji O Kim\0" + VALUE "FileDescription", "우마무스메 현지화 패치\0" + VALUE "FileVersion", "1.13.0.0\0" + VALUE "InternalName", "umamusume-localify\0" + VALUE "ProductName", "Umamusume Localify\0" + VALUE "ProductVersion", "1.13.0\0" + END + BLOCK "000004b0" + BEGIN + VALUE "LegalCopyright", "Copyright © Ji O Kim\0" + VALUE "FileDescription", "Localization patch for Umamusume\0" + VALUE "FileVersion", "1.13.0.0\0" + VALUE "InternalName", "umamusume-localify\0" + VALUE "ProductName", "Umamusume Localify\0" + VALUE "ProductVersion", "1.13.0\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0412, 1200, 0x0, 1200 + END +END diff --git a/src/resource.h b/src/resource.h new file mode 100644 index 0000000..7764010 --- /dev/null +++ b/src/resource.h @@ -0,0 +1,18 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++에서 생성한 포함 파일입니다. +// VERSIONINFO.rc에서 사용되고 있습니다. +// +#define VER_DEBUG 0 +#define VS_VERSION_INFO 1 +#define IDC_STATIC -1 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 101 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1000 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/utils/bin/premake5.exe b/utils/bin/premake5.exe index c73da1f..1a637aa 100644 Binary files a/utils/bin/premake5.exe and b/utils/bin/premake5.exe differ