Release v0.1.20 2026-07-19

This commit is contained in:
Warren H
2026-07-19 16:37:37 -04:00
parent 437e70fc58
commit 018e060cdd
22 changed files with 884 additions and 121 deletions
+2 -1
View File
@@ -194,6 +194,7 @@ export function BottomDisplayApp() {
return false;
},
setEndlessChoiceSelection: (selection) => postCommand({ name: "setEndlessChoiceSelection", selection }),
setHockeyPvpPostMatchSelection: (selection) => postCommand({ name: "setHockeyPvpPostMatchSelection", selection }),
dispatchRpgAction: (action) => {
postCommand({ name: "dispatchRpgAction", action });
return false;
@@ -254,7 +255,7 @@ export function BottomDisplayApp() {
return (
<main className="bottom-display-root">
{surface.screen === "game"
? <Suspense fallback={<CompanionStandby screen="game" hunterName={surface.hunterName} notice="Loading field controls…" />}><BottomScreen onExit={() => postFrontendCommand({ name: "exitGame" })} /></Suspense>
? <Suspense fallback={<CompanionStandby screen="game" hunterName={surface.hunterName} notice="Loading field controls…" />}><BottomScreen onExit={() => postFrontendCommand({ name: "exitGame" })} onHockeyPvpAction={(action) => postFrontendCommand({ name: "hockeyPvpPostMatch", action })} /></Suspense>
: surface.notice === "Linking upper display…"
? <CompanionStandby screen={surface.screen} hunterName={surface.hunterName} notice={surface.notice} />
: <FrontEnd onLaunch={launchGame} />}