From aba9ed7e95138a1c78d4a802192f2c973b629d64 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 16 Nov 2022 18:33:27 +0000 Subject: [PATCH] Fix fields in resource file When reading Microsoft's docs to debug an issue in another codebase I noticed that the fields added in this commit are documented as being required, and that there was a specific FILETYPE for DLLs. --- src/api/resource.rc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/api/resource.rc b/src/api/resource.rc index 8cfd7d31..1b431674 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -5,14 +5,19 @@ FILEVERSION 0, 18, 2, 0 PRODUCTVERSION 0, 18, 2, 0 FILEOS VOS__WINDOWS32 -FILETYPE VFT_APP +FILETYPE VFT_DLL BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN +VALUE "CompanyName", "LOOT" +VALUE "FileDescription", "Library providing LOOT's core functionality" VALUE "FileVersion", "0.18.2" -VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" +VALUE "InternalName", "loot" +VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet" +VALUE "OriginalFilename", "loot.dll" +VALUE "ProductName", "LOOT" VALUE "ProductVersion", "0.18.2" END END