From b5c2ff76769c2aa0996604ad8a11ac95d13a0125 Mon Sep 17 00:00:00 2001 From: Vivi029 <43375475+Vivi029@users.noreply.github.com> Date: Fri, 6 Feb 2026 09:07:18 +0100 Subject: [PATCH 1/2] feat: add Google Play Games support --- src/cmds/test.ts | 7 +++++++ src/utils/config.ts | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/cmds/test.ts b/src/cmds/test.ts index 7fe86f9..13d71c9 100644 --- a/src/cmds/test.ts +++ b/src/cmds/test.ts @@ -94,6 +94,13 @@ async function mainCmdHandler() { launcherSubChannel: cfg.subChannel.osWinRelEpic, dirName: String(cfg.subChannel.osWinRelEpic), }, + { + name: 'GooglePlay', + launcherAppCode: cfg.appCode.launcher.osWinRelEpic, + subChannel: cfg.subChannel.osWinRelGooglePlay, + launcherSubChannel: cfg.subChannel.osWinRelGooglePlay, + dirName: String(cfg.subChannel.osWinRelGooglePlay), + }, ]; for (const target of gameTargets) { diff --git a/src/utils/config.ts b/src/utils/config.ts index 05aff82..b1849bc 100644 --- a/src/utils/config.ts +++ b/src/utils/config.ts @@ -22,7 +22,7 @@ type ConfigType = AllRequired< u8: { osWinRel: string }; }; channel: { osWinRel: number }; - subChannel: { osWinRel: number; osWinRelEpic: number }; + subChannel: { osWinRel: number; osWinRelEpic: number, osWinRelGooglePlay: number }; base: { accountService: string; launcher: string; @@ -69,7 +69,7 @@ const initialConfig: ConfigType = { u8: { osWinRel: '973bd727dd11cbb6ead8' }, }, channel: { osWinRel: 6 }, - subChannel: { osWinRel: 6, osWinRelEpic: 801 }, + subChannel: { osWinRel: 6, osWinRelEpic: 801, osWinRelGooglePlay: 802 }, base: { accountService: 'YXMuZ3J5cGhsaW5lLmNvbQ==', launcher: 'bGF1bmNoZXIuZ3J5cGhsaW5lLmNvbS9hcGk=', From 102895120deab6be2779c0a8fd37afdca2dde85a Mon Sep 17 00:00:00 2001 From: Vivi029 <43375475+Vivi029@users.noreply.github.com> Date: Fri, 6 Feb 2026 09:09:16 +0100 Subject: [PATCH 2/2] fix: add missing config option --- config/config.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/config.yaml b/config/config.yaml index f9a2ae4..060f0fc 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -19,6 +19,7 @@ network: subChannel: osWinRel: 6 osWinRelEpic: 801 + osWinRelGooglePlay: 802 base: accountService: YXMuZ3J5cGhsaW5lLmNvbQ== launcher: bGF1bmNoZXIuZ3J5cGhsaW5lLmNvbS9hcGk=