diff --git a/AquaNet/src/libs/i18n/en_ref.ts b/AquaNet/src/libs/i18n/en_ref.ts
index b1dd6c31..3dec9139 100644
--- a/AquaNet/src/libs/i18n/en_ref.ts
+++ b/AquaNet/src/libs/i18n/en_ref.ts
@@ -144,10 +144,9 @@ export const EN_REF_SETUP = {
'setup.welcome': `Welcome! If you have a game set up, please follow the instructions below to set up the connection with AquaDX.`,
'setup.keychip-warning': `Your keychip is linked to your account and should be kept secure. Do not give others your keychip.`,
'setup.steps.one': `Pick a method of setting up network communications. Some browsers may not be able to do automatic setup.`,
- 'setup.steps.two': `Ensure your game has encryption disabled as AquaDX does not support encryption. This may be via a patch or setting.`,
- 'setup.steps.three': `Link your Aime card to your AquaDX account using the Cards page via it's access code or serial number.`,
- 'setup.steps.four': `Start the game. Upon reaching the title screen, the network icon in the corner should now show green instead of grey.`,
- 'setup.support-info': `If you need assistance, feel free to make an inquiry in a support channel.`,
+ 'setup.steps.two': `Link your Aime card to your AquaDX account using the Cards page via it's access code or serial number.`,
+ 'setup.steps.three': `Start the game. Upon reaching the title screen, the network icon in the corner should now show green instead of grey.`,
+ 'setup.support-info': `If you need additional assistance, feel free to make an inquiry in a support channel.`,
'setup.reveal-keychip': `Reveal keychip`,
'setup.type.automatic': `Automatic Setup`,
'setup.type.manual': `Manual Setup`,
@@ -155,7 +154,16 @@ export const EN_REF_SETUP = {
'setup.automatic': `Select your segatools.ini below to autofill the network information.`,
'setup.automatic.success': `Success, data has been updated`,
'setup.automatic.failure': `Failed to update information, please ensure access is not blocked and try again.`,
- 'setup.automatic.select': `Pick file`
+ 'setup.automatic.select': `Pick file`,
+ 'setup.troubleshooting.header': 'Setup Troubleshooting (FAQ)',
+ 'setup.troubleshooting.items.one': `"It shows DNS BAD on Network Test!"
+ You likely misconfigured your segatools.ini. Ensure it's pointing to the DNS shown above (under Manual Setup).`,
+ 'setup.troubleshooting.items.two': `"It shows タイトル サーバー BAD (Title Server BAD) on Network Test!"
+ You should check your segatools.ini to ensure your keychip is set correctly.
+ Additionally, Card Maker users and players using a game version higher than what's listed may need to disable encryption
+ (instructions for Card Maker)`,
+ 'setup.troubleshooting.items.three': `"I can't scan my card!"
+ Emulated card readers, by default, are configured to use the ENTER key to scan in (hold it).`
}
export const EN_REF_SETTINGS = {
diff --git a/AquaNet/src/libs/i18n/zh.ts b/AquaNet/src/libs/i18n/zh.ts
index e5ee5412..a33db471 100644
--- a/AquaNet/src/libs/i18n/zh.ts
+++ b/AquaNet/src/libs/i18n/zh.ts
@@ -5,6 +5,7 @@ import {
EN_REF_LEADERBOARD,
EN_REF_MAI_PHOTO,
EN_REF_SETTINGS,
+ EN_REF_SETUP,
EN_REF_USER,
EN_REF_USERBOX,
type EN_REF_Welcome
@@ -154,6 +155,32 @@ const zhHome: typeof EN_REF_HOME = {
'home.import.data-conflict': '继续导入将覆盖现有数据',
}
+const zhSetup: typeof EN_REF_SETUP = {
+ 'setup.welcome': `欢迎!如果您已经设置好游戏,请按照以下说明与 AquaDX 建立连接。`,
+ 'setup.keychip-warning': `您的 keychip 与您的账户绑定,应妥善保管。请勿将 keychip 提供给他人。`,
+ 'setup.steps.one': `选择一种网络通信设置方式。某些浏览器可能无法进行自动设置。`,
+ 'setup.steps.two': `通过 Cards 页面,使用访问码或序列号将您的 Aime 卡绑定到 AquaDX 账户。`,
+ 'setup.steps.three': `启动游戏。在进入标题界面后,角落中的网络图标应显示为绿色而不是灰色。`,
+ 'setup.support-info': `如果您需要更多帮助,请在 support channel 中提交咨询。`,
+ 'setup.reveal-keychip': `显示 keychip`,
+ 'setup.type.automatic': `自动设置`,
+ 'setup.type.manual': `手动设置`,
+ 'setup.manual': `请使用以下信息修改您的 segatools.ini 文件。`,
+ 'setup.automatic': `选择您的 segatools.ini 文件以自动填充网络信息。`,
+ 'setup.automatic.success': `成功,数据已更新`,
+ 'setup.automatic.failure': `更新失败,请确保访问未被阻止后重试。`,
+ 'setup.automatic.select': `选择文件`,
+ 'setup.troubleshooting.header': '设置故障排除(FAQ)',
+ 'setup.troubleshooting.items.one': `"网络测试显示 DNS BAD!"
+ 您可能错误配置了 segatools.ini。请确保其指向上方显示的 DNS(见手动设置)。`,
+ 'setup.troubleshooting.items.two': `"网络测试显示 タイトル サーバー BAD(Title Server BAD)!"
+ 请检查您的 segatools.ini,确保 keychip 设置正确。
+ 此外,Card Maker 用户以及使用高于所列版本的玩家可能需要禁用加密
+ (Card Maker 指南)`,
+ 'setup.troubleshooting.items.three': `"我无法扫描卡片!"
+ 默认情况下,模拟读卡器使用 ENTER 键进行扫描(按住)。`
+}
+
const zhSettings: typeof EN_REF_SETTINGS = {
'settings.title': '用户设置',
'settings.tabs.profile': '个人资料',
@@ -342,5 +369,5 @@ export const zhAquaTrans: typeof EN_REF_AQUATRANS = {
export const ZH = { ...zhUser, ...zhWelcome, ...zhGeneral,
...zhLeaderboard, ...zhHome, ...zhSettings, ...zhUserbox, ...zhMaiPhoto,
- ...zhAquaTrans
+ ...zhAquaTrans, ...zhSetup
}
diff --git a/AquaNet/src/pages/Home/SetupInstructions.svelte b/AquaNet/src/pages/Home/SetupInstructions.svelte
index aa6f153a..12149331 100644
--- a/AquaNet/src/pages/Home/SetupInstructions.svelte
+++ b/AquaNet/src/pages/Home/SetupInstructions.svelte
@@ -93,13 +93,21 @@ id=${keychip}`.trim(), {
{@html t('setup.support-info')} -
+ {:else}{t('loading')}
{/if} @@ -111,6 +119,10 @@ id=${keychip}`.trim(), { .code overflow-x: auto + ul + li + margin: 0.75em 0 + :global(pre.shiki) background-color: transparent !important diff --git a/README.md b/README.md index a099a9ee..79ee8222 100644 --- a/README.md +++ b/README.md @@ -32,21 +32,22 @@ Multipurpose game server for ALL.Net games. > [!WARNING] > CHUNITHM pre-NEW!! and maimai pre-DX are no longer supported after February 6th, 2026 and all associated data will be removed. -| Game | Latest Ver. | Initial Ver. | Notes | Web UI | Data Import | -|------------------------|---------------------|---------------------|-------------------------------------------------------------|--------|-------------| -| SDHD: CHUNITHM | 2.45 (X-VERSE-X) | 2.00 (NEW) | | ✅ | ❗ | -| SDEZ: maimai DX | 1.65 (CiRCLE PLUS) | 1.00 (DX) | Missing circle (teams) support | ✅ | ✅ | -| SDGA: maimai DX (Intl) | 1.60 (CiRCLE) | 1.00 (DX) | Thanks [@Clansty](https://github.com/clansty) | ✅ | ✅ | -| SDED: Card Maker | 1.39 | N/A | Thanks [@Becods](https://github.com/Becods) | ❌ | ❌ | -| SDDT: O.N.G.E.K.I. | 1.50 (Re:Fresh) | N/A | Thanks [@PenguinCaptain](https://github.com/PenguinCaptain) | ✅ | ❌ | -| SBZV: Project DIVA | 7.10 | N/A | Minimal support | ❌ | ❌ | -| SDFE: Wacca | 3.07 (Reverse) | N/A | Later versions are EOS patches, network will not work | ✅ | ❌ | +| Game | Latest Ver. | Initial Ver. | Notes | Web UI | Data Import | Encryption | +|------------------------|---------------------|---------------------|-------------------------------------------------------------|--------|-------------|------------| +| SDHD: CHUNITHM | 2.45 (X-VERSE-X) | 2.00 (NEW) | | ✅ | ❗ | ✅ | +| SDEZ: maimai DX | 1.65 (CiRCLE PLUS) | 1.00 (DX) | Missing circle (teams) support | ✅ | ✅ | ✅ | +| SDGA: maimai DX (Intl) | 1.60 (CiRCLE) | 1.00 (DX) | Thanks [@Clansty](https://github.com/clansty) | ✅ | ✅ | ✅ | +| SDED: Card Maker | 1.39 | N/A | Thanks [@Becods](https://github.com/Becods) | ❌ | ❌ | ❌ | +| SDDT: O.N.G.E.K.I. | 1.50 (Re:Fresh) | N/A | Thanks [@PenguinCaptain](https://github.com/PenguinCaptain) | ✅ | ❌ | ✅ | +| SBZV: Project DIVA | 7.10 | N/A | Minimal support | ❌ | ❌ | 🔓 | +| SDFE: Wacca | 3.07 (Reverse) | N/A | Later versions are EOS patches, network will not work | ✅ | ❌ | 🔓 | Check out these docs for more information. * [Game specific notes](docs/game_specific_notes.md) * [Frequently asked questions](docs/frequently_asked_questions.md) +* [Encryption notes](docs/encryption.md) ## Usage diff --git a/docs/encryption.md b/docs/encryption.md new file mode 100644 index 00000000..50437860 --- /dev/null +++ b/docs/encryption.md @@ -0,0 +1,35 @@ +# Encryption Support + +AquaDX supports encryption for Chunithm, Maimai and Ongeki.