mirror of
https://github.com/izzy2lost/shinobu.git
synced 2026-03-26 16:50:24 -07:00
Add cosmetic engine customizations
This commit is contained in:
+1
-1
@@ -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),
|
||||
|
||||
@@ -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"
|
||||
@@ -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 |
@@ -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
|
||||
Reference in New Issue
Block a user