Release v0.1.5 2026-07-12
This commit is contained in:
@@ -122,6 +122,8 @@ export function BottomDisplayApp() {
|
||||
selectGearSlot: (slotId) => postFrontend({ name: "selectGearSlot", slotId }),
|
||||
selectGearWorkshopMode: (mode) => postFrontend({ name: "selectGearWorkshopMode", mode }),
|
||||
selectInfusion: (infusionId) => postFrontend({ name: "selectInfusion", infusionId }),
|
||||
selectPassiveAbility: (abilityId) => postFrontend({ name: "selectPassiveAbility", abilityId }),
|
||||
selectPassiveInfusion: (passiveId) => postFrontend({ name: "selectPassiveInfusion", passiveId }),
|
||||
upgradeSelectedGear: () => {
|
||||
postFrontend({ name: "upgradeSelectedGear" });
|
||||
return false;
|
||||
@@ -155,6 +157,10 @@ export function BottomDisplayApp() {
|
||||
postCommand({ name: "chooseRunBuff", buffId });
|
||||
return false;
|
||||
},
|
||||
continueRoguelikeRound: () => {
|
||||
postCommand({ name: "continueRoguelikeRound" });
|
||||
return false;
|
||||
},
|
||||
});
|
||||
channel.onmessage = (event: MessageEvent<DualScreenMessage>) => {
|
||||
if (event.data.type === "authoritative-ready") {
|
||||
|
||||
Reference in New Issue
Block a user