From b0523ea5b161789b0a1815824ed2223de32c0700 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Wed, 2 Sep 2020 16:18:12 -0500 Subject: [PATCH] Added log output for android asset-sync phase --- CHANGELOG.md | 3 ++- tools/efrotools/pcommand.py | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e146c484..9649c48a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ -### 1.5.25 (20174) +### 1.5.25 (20175) - Added Venetian language (thanks Federico!) - Fixed an issue where chosen-one flashes would remain if the player leaves the game - Added android input-device detection log messages for debugging +- Android asset-sync phase (completing install...) now emits log output for debugging. ### 1.5.24 (20163) - Upgraded Python from version 3.7 to 3.8. This is a substantial change (though nothing like the previous update from 2.7 to 3.7) so please holler if anything is broken. These updates will happen once every year or two now.. diff --git a/tools/efrotools/pcommand.py b/tools/efrotools/pcommand.py index a75a656b..57849d74 100644 --- a/tools/efrotools/pcommand.py +++ b/tools/efrotools/pcommand.py @@ -372,7 +372,13 @@ def _filter_tool_config(cfg: str) -> str: cfg = cfg.replace('__EFRO_PROJECT_ROOT__', str(PROJROOT)) # Short project name. - short_names = {'ballistica-internal': 'ba-int', 'ballistica': 'ba'} + short_names = { + 'ballistica-internal': 'ba-int', + 'ballistica': 'ba', + 'ballistica-master-server-2.0': 'bamaster2', + 'ballistica-master-server': 'bamaster', + 'ballistica-server-node': 'baservnode', + } shortname = short_names.get(PROJROOT.name, PROJROOT.name) cfg = cfg.replace('__EFRO_PROJECT_SHORTNAME__', shortname)