Add cosmetic engine customizations

This commit is contained in:
Álex Román Núñez
2024-10-31 18:01:56 +01:00
parent 479e6e7bfa
commit 19bf37b61a
5 changed files with 44 additions and 2 deletions
+1 -1
View File
@@ -201,7 +201,7 @@ def get_version_info(module_version_string="", silent=False):
if not silent:
print(f"Using custom build name: '{build_name}'.")
import version
import ph_version as version
version_info = {
"short_name": str(version.short_name),
+9
View File
@@ -0,0 +1,9 @@
short_name = "ph_engine"
name = "Project Heartbeat"
major = 4
minor = 4
patch = 0
status = "dev"
module_config = ""
website = "https://ph.eirteam.moe"
docs = "latest"
+1 -1
View File
@@ -48,7 +48,7 @@ def arrange_program_clean(prog):
Clean(prog, extra_files_to_clean)
res_file = "godot_res.rc"
res_file = "ph_res.rc"
res_target = "godot_res" + env["OBJSUFFIX"]
res_obj = env.RES(res_target, res_file)
env.Depends(res_obj, "#core/version_generated.gen.h")
Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

+33
View File
@@ -0,0 +1,33 @@
#include "core/version.h"
#ifndef RT_MANIFEST
#define RT_MANIFEST 24
#endif
GODOT_ICON ICON platform/windows/ph.ico
1 RT_MANIFEST "godot.manifest"
1 VERSIONINFO
FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,0
PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,0
FILEOS 4
FILETYPE 1
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Project Heartbeat"
VALUE "FileDescription", VERSION_NAME
VALUE "FileVersion", VERSION_NUMBER
VALUE "ProductName", VERSION_NAME
VALUE "LegalCopyright", "(c) 2020-present Álex Román Núñez, EIRTeam"
VALUE "Info", "https://ph.eirteam.moe"
VALUE "ProductVersion", VERSION_FULL_BUILD
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END