1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

Merge pull request #2142 from HullSeals/fix/remove-wix-associated-files

[2127] Cleanup Wix and Manifest Files
This commit is contained in:
Phoebe 2024-01-04 20:16:56 +01:00 committed by David Sangrey
parent 5419e2e47f
commit 33ea0124d8
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
9 changed files with 3 additions and 9 deletions

View File

@ -1,6 +0,0 @@
<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<VisualElements
BackgroundColor="black"
ShowNameOnSquare150x150Logo="on"
ForegroundText="light" />
</Application>

Binary file not shown.

View File

@ -80,7 +80,6 @@ def generate_data_files(
"modules.json",
"ships.json",
"ships.p", # TODO: Remove in 6.0
f"{app_name}.VisualElementsManifest.xml",
f"{app_name}.ico",
"EDMarketConnector - TRACE.bat",
"EDMarketConnector - localserver-auth.bat",
@ -165,15 +164,16 @@ def build() -> None:
"script": "EDMarketConnector.py",
"icon_resources": [(0, f"{appname}.ico")],
"other_resources": [
(24, 1, pathlib.Path(f"{appname}.manifest").read_text(encoding="UTF8"))
(24, 1, pathlib.Path(f"resources/{appname}.manifest").read_text(encoding="UTF8"))
],
}
console_config: dict = {
"dest_base": appcmdname,
"script": "EDMC.py",
"icon_resources": [(0, f"{appname}.ico")],
"other_resources": [
(24, 1, pathlib.Path(f"{appcmdname}.manifest").read_text(encoding="UTF8"))
(24, 1, pathlib.Path(f"resources/{appcmdname}.manifest").read_text(encoding="UTF8"))
],
}