From cab54a5504d8d0f463e21e750e4300c5235f799b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD=20=D0=A2=D1=80=D0=BE=D1=88?= =?UTF-8?q?=D0=B8=D0=BD?= Date: Wed, 23 Sep 2026 08:39:44 +0300 Subject: [PATCH] ui: order the Remote APDU pills RAM/GP, Expanded Script Swap the two pills in the Remote APDU view (SIM RFM, USIM RFM, RAM/GP, Expanded Script, HTTP OTA, C-APDU Parser, Response parser) and keep the subtab-toggling name list in the same order. Pill order updated in help EN/RU, READMEs and AGENTS; sw cache -> simple-v245; version stays 3.4.0. --- README.md | 2 +- README_RUS.md | 2 +- frontend/help-ru.html | 4 ++-- frontend/help.html | 4 ++-- frontend/index.html | 4 ++-- frontend/sw.js | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3a50bf8..79ffada 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Seven top-level tabs: **Remote APDU**, **SCP80**, **SCP81**, **Cards**, **Profil ## Remote APDU tab -Builds command APDUs (C-APDUs). Seven sub-tabs cover different card generations, command sets and decoding tools: **SIM RFM**, **USIM RFM**, **Expanded Script**, **RAM/GP**, **HTTP OTA**, **C-APDU Parser**, and **Response parser**. +Builds command APDUs (C-APDUs). Seven sub-tabs cover different card generations, command sets and decoding tools: **SIM RFM**, **USIM RFM**, **RAM/GP**, **Expanded Script**, **HTTP OTA**, **C-APDU Parser**, and **Response parser**. ### SIM RFM diff --git a/README_RUS.md b/README_RUS.md index 9fb03e0..0758036 100644 --- a/README_RUS.md +++ b/README_RUS.md @@ -44,7 +44,7 @@ npm run build ## Вкладка Remote APDU -Построение команд APDU (C-APDU). Семь подвкладок для разных поколений карт, наборов команд и инструментов разбора: **SIM RFM**, **USIM RFM**, **Expanded Script**, **RAM/GP**, **HTTP OTA**, **Разбор C-APDU** и **«Парсер ответов»**. +Построение команд APDU (C-APDU). Семь подвкладок для разных поколений карт, наборов команд и инструментов разбора: **SIM RFM**, **USIM RFM**, **RAM/GP**, **Expanded Script**, **HTTP OTA**, **Разбор C-APDU** и **«Парсер ответов»**. ### SIM RFM diff --git a/frontend/help-ru.html b/frontend/help-ru.html index 19488c3..c39c7a7 100644 --- a/frontend/help-ru.html +++ b/frontend/help-ru.html @@ -44,14 +44,14 @@

2. Вкладка Remote APDU

-

Построение командных APDU (C-APDU). Семь подвкладок охватывают разные поколения карт, наборы команд и инструменты разбора: SIM RFM, USIM RFM, Expanded Script, RAM/GP, HTTP OTA, Разбор C-APDU и «Парсер ответов».

+

Построение командных APDU (C-APDU). Семь подвкладок охватывают разные поколения карт, наборы команд и инструменты разбора: SIM RFM, USIM RFM, RAM/GP, Expanded Script, HTTP OTA, Разбор C-APDU и «Парсер ответов».

2.1 SIM RFM

CLA = A0 (GSM 11.11 / TS 151 011, ISO 7816-4). Удалённое управление файлами классических SIM-карт.

diff --git a/frontend/help.html b/frontend/help.html index a240f16..ecfbefd 100644 --- a/frontend/help.html +++ b/frontend/help.html @@ -44,14 +44,14 @@

2. Remote APDU tab

-

Builds command APDUs (C-APDUs). Seven sub-tabs cover different card generations, command sets and decoding tools: SIM RFM, USIM RFM, Expanded Script, RAM/GP, HTTP OTA, C-APDU Parser, and Response parser.

+

Builds command APDUs (C-APDUs). Seven sub-tabs cover different card generations, command sets and decoding tools: SIM RFM, USIM RFM, RAM/GP, Expanded Script, HTTP OTA, C-APDU Parser, and Response parser.

2.1 SIM RFM

CLA = A0 (GSM 11.11 / TS 151 011, ISO 7816-4). Remote File Management for classic SIM cards.

diff --git a/frontend/index.html b/frontend/index.html index e505743..75e7bac 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -52,8 +52,8 @@
- + @@ -1503,7 +1503,7 @@ function cApduSwitchSubtab(name) { btn.classList.toggle('text-gray-700', !active); btn.classList.toggle('dark:text-slate-300', !active); }); - ['sim', 'usim', 'ber', 'ram', 'parse', 'httpota', 'response'].forEach(s => { + ['sim', 'usim', 'ram', 'ber', 'parse', 'httpota', 'response'].forEach(s => { const el = document.getElementById('c-apdu-sub-' + s); if (el) el.classList.toggle('hidden', s !== name); }); diff --git a/frontend/sw.js b/frontend/sw.js index 35b11d8..049ab12 100644 --- a/frontend/sw.js +++ b/frontend/sw.js @@ -1,4 +1,4 @@ -const CACHE = 'simple-v244'; +const CACHE = 'simple-v245'; const URLS = [ 'index.html', 'help.html',