diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-07-27 21:07:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-27 21:07:45 +0200 |
commit | c0e3c1fe7a869b36063b89271977ea0bdeda34a9 (patch) | |
tree | 03c0de5170593c63098910c322daf1bede532272 | |
parent | 8a01655db596866b7ab0a7488b18d19501c7da75 (diff) | |
parent | 0bc589a0c7a12c80f4e365724586174e2e7c9dbd (diff) |
Merge pull request #5943 from vnen/windows-resource-info
Fix Windows resource script
-rw-r--r-- | platform/windows/godot_res.rc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/godot_res.rc b/platform/windows/godot_res.rc index c1754afa8c..b86869d316 100644 --- a/platform/windows/godot_res.rc +++ b/platform/windows/godot_res.rc @@ -23,8 +23,8 @@ BEGIN BLOCK "040904b0" BEGIN VALUE "CompanyName", "Godot Engine" - VALUE "FileDescription", _MKSTR(VERSION_NAME) " Editor (" _MKSTR(VERSION_STATUS) ")" - VALUE "FileVersion", _MKSTR(VERSION_MAJOR),_MKSTR(VERSION_MINOR),_MKSTR(VERSION_PATCH) + VALUE "FileDescription", _MKSTR(VERSION_NAME) " Editor" + VALUE "FileVersion", _MKSTR(VERSION_MAJOR) "." _MKSTR(VERSION_MINOR) "." _MKSTR(VERSION_PATCH) VALUE "ProductName", _MKSTR(VERSION_NAME) VALUE "Licence", "MIT" VALUE "LegalCopyright", "Copyright (c) 2007-" _MKSTR(VERSION_YEAR) " Juan Linietsky, Ariel Manzur" |