@legna-lnc/legnacode 2.1.7 → 2.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +35 -19
- package/README.zh-CN.md +41 -38
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
All notable changes to LegnaCode CLI will be documented in this file.
|
|
6
6
|
|
|
7
|
+
## [2.1.8] - 2026-05-25
|
|
8
|
+
|
|
9
|
+
### Fixes
|
|
10
|
+
|
|
11
|
+
- **Computer Use Screenshot Permission Loop** — macOS Screen Recording permission check via Swift subprocess (`swift -e` + `CGPreflightScreenCaptureAccess()`) always returned `false` for child processes because TCC binds to the parent app bundle, not spawned subprocesses. Replaced with Python bridge `check_permissions` which uses a window-title fallback probe. `null` (unknown/unreliable) is now treated as non-blocking — the actual capture attempt is the final source of truth.
|
|
12
|
+
- **Agent Stalling After File Reads** — Added explicit "read-then-act" directive to system prompt. The model would read files then stop (end_turn) waiting for user input instead of proceeding to edit. Now instructed to proceed immediately after reading — no summary, no confirmation pause.
|
|
13
|
+
|
|
7
14
|
## [2.1.7] - 2026-05-24
|
|
8
15
|
|
|
9
16
|
### Features
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**An AI-powered terminal programming assistant, supercharged.**
|
|
6
6
|
|
|
7
|
-
[](./CHANGELOG.md)
|
|
8
8
|
[](#platform-support)
|
|
9
9
|
[](./LICENSE)
|
|
10
10
|
[](https://github.com/anthropics/claude-code)
|
|
@@ -37,39 +37,55 @@ LegnaCode is built on top of [Claude Code CLI](https://github.com/anthropics/cla
|
|
|
37
37
|
|
|
38
38
|
| Version | Summary |
|
|
39
39
|
|---------|---------|
|
|
40
|
+
| **2.1.8** | Fix Computer Use screenshot permission loop (Swift→Python bridge); fix agent stalling after file reads (read-then-act directive) |
|
|
40
41
|
| **2.1.7** | Wire all 6 custom features; config federation discovery startup integration; fix all MiniMax/REPL/WebBrowser tool types; WebUI preset switching clears stale fields; declare all feature flags |
|
|
41
42
|
| **2.1.6** | Hashline Edit integration (hash-anchored Read output); fix HashlineEditTool type errors; fix missing import in prompts.ts; system prompt guidance for tool routing |
|
|
42
43
|
| **2.1.5** | Multi-provider routing (28 providers, 9 protocols); Hashline edit system; persistent shell + output minimizer; real browser control; persistent Python kernel; config federation discovery; Admin WebUI expanded (21 presets) |
|
|
43
|
-
| **2.1.3** | Remove GrowthBook dependency from /loop cron gate; fix OpenAI stream bridge silently swallowing empty responses |
|
|
44
|
-
| **2.1.2** | Fix ctrl+o crash when sandbox is disabled (SandboxViolationStore.subscribe guard) |
|
|
45
|
-
| **2.1.1** | DeepSeek deep optimization: auto reasoning effort, precise pricing, model alias expansion, tool name encoding |
|
|
46
|
-
| **2.1.0** | Platform-aware publish (Mac→darwin+linux, Win→win32); DeepSeek reasoning_content multi-turn 400 fix; ShellProgressMessage crash fix |
|
|
47
|
-
| **2.0.5** | LegnaCode Office pixel visualization (conversation sidebar, status bubble, WebSocket, join-key auth, layout persistence, notification sounds, demo mode, i18n); DeepSeek reasoning_content passback fix |
|
|
48
|
-
| **2.0.4** | OpenAI Responses API bridge (Codex providers); admin config hot-reload + UI auto-refresh; getGlobalSettings dead code fix |
|
|
49
|
-
| **2.0.3** | Kiro Gateway optimization; admin profile inline editing; model allowlist removed; count_tokens disabled; sandbox removed |
|
|
50
|
-
| **1.9.9** | Bash exit code 65 彻底修复;Admin 预设配置模板;ANTHROPIC_MODEL 字段 |
|
|
51
|
-
| **1.9.5** | Admin preset profile templates (7 providers); ANTHROPIC_MODEL field; migration auto-fill |
|
|
52
|
-
| **1.9.4** | macOS Seatbelt sandbox rewrite (allow-by-default); Shell.ts sandbox return path fix |
|
|
53
|
-
| **1.9.3** | OpenAI-compatible API routing; deep adapter alignment for all 7 CN providers; admin profile clone; Bash sandbox fix |
|
|
54
|
-
| **1.9.2** | Computer Use Python bridge (macOS + Windows); auto Python 3.12+ venv setup; feature gate removal for Computer Use |
|
|
55
|
-
| **1.9.0** | Portable sessions (relative cwd); WebUI overhaul (project browser, memory editor, force-directed graph); full project migration (sessions + subagents + memory + skills + agents + rules + MCP config); profile switching via pointer file |
|
|
56
|
-
| **1.8.5** | Token optimization: compress tool prompts (BashTool/AgentTool/TodoWrite/EnterPlanMode); fix cache_control for Kimi/MiniMax/MiMo adapters |
|
|
57
44
|
|
|
58
45
|
<details>
|
|
59
|
-
<summary>1.
|
|
46
|
+
<summary>2.1.x patches</summary>
|
|
60
47
|
|
|
61
48
|
| Version | Summary |
|
|
62
49
|
|---------|---------|
|
|
50
|
+
| 2.1.3 | Remove GrowthBook dependency from /loop cron gate; fix OpenAI stream bridge silently swallowing empty responses |
|
|
51
|
+
| 2.1.2 | Fix ctrl+o crash when sandbox is disabled (SandboxViolationStore.subscribe guard) |
|
|
52
|
+
| 2.1.1 | DeepSeek deep optimization: auto reasoning effort, precise pricing, model alias expansion, tool name encoding |
|
|
53
|
+
| 2.1.0 | Platform-aware publish (Mac→darwin+linux, Win→win32); DeepSeek reasoning_content multi-turn 400 fix; ShellProgressMessage crash fix |
|
|
54
|
+
|
|
55
|
+
</details>
|
|
56
|
+
|
|
57
|
+
<details>
|
|
58
|
+
<summary>2.0.x</summary>
|
|
59
|
+
|
|
60
|
+
| Version | Summary |
|
|
61
|
+
|---------|---------|
|
|
62
|
+
| 2.0.5 | LegnaCode Office pixel visualization (conversation sidebar, status bubble, WebSocket, join-key auth, layout persistence, notification sounds, demo mode, i18n); DeepSeek reasoning_content passback fix |
|
|
63
|
+
| 2.0.4 | OpenAI Responses API bridge (Codex providers); admin config hot-reload + UI auto-refresh; getGlobalSettings dead code fix |
|
|
64
|
+
| 2.0.3 | Kiro Gateway optimization; admin profile inline editing; model allowlist removed; count_tokens disabled; sandbox removed |
|
|
65
|
+
|
|
66
|
+
</details>
|
|
67
|
+
|
|
68
|
+
<details>
|
|
69
|
+
<summary>1.8.x – 1.9.x</summary>
|
|
70
|
+
|
|
71
|
+
| Version | Summary |
|
|
72
|
+
|---------|---------|
|
|
73
|
+
| 1.9.9 | Bash exit code 65 彻底修复;Admin 预设配置模板;ANTHROPIC_MODEL 字段 |
|
|
74
|
+
| 1.9.5 | Admin preset profile templates (7 providers); ANTHROPIC_MODEL field; migration auto-fill |
|
|
75
|
+
| 1.9.4 | macOS Seatbelt sandbox rewrite (allow-by-default); Shell.ts sandbox return path fix |
|
|
76
|
+
| 1.9.3 | OpenAI-compatible API routing; deep adapter alignment for all 7 CN providers; admin profile clone; Bash sandbox fix |
|
|
77
|
+
| 1.9.2 | Computer Use Python bridge (macOS + Windows); auto Python 3.12+ venv setup; feature gate removal for Computer Use |
|
|
78
|
+
| 1.9.0 | Portable sessions (relative cwd); WebUI overhaul (project browser, memory editor, force-directed graph); full project migration; profile switching via pointer file |
|
|
79
|
+
| 1.8.5 | Token optimization: compress tool prompts (BashTool/AgentTool/TodoWrite/EnterPlanMode); fix cache_control for Kimi/MiniMax/MiMo adapters |
|
|
63
80
|
| 1.8.4 | Fix `isVirtual in m` crash — null guards for session transcript processing |
|
|
64
81
|
| 1.8.3 | GitHub Actions CI release workflow; OML agent type fix; cross-platform Rust native addon builds |
|
|
65
82
|
| 1.8.2 | Null-guard fixes for message pipeline crashes; Rust native addons (sandbox/file-search/apply-patch) for darwin-arm64 |
|
|
83
|
+
| 1.8.0 | Codex full compat: plugin adapter + marketplace, skills discovery, config interop; TS/Python SDK; TTS + WebRTC voice |
|
|
66
84
|
|
|
67
85
|
</details>
|
|
68
86
|
|
|
69
|
-
| **1.8.0** | Codex full compat: plugin adapter + marketplace, skills discovery, config interop; TS/Python SDK; TTS + WebRTC voice |
|
|
70
|
-
|
|
71
87
|
<details>
|
|
72
|
-
<summary>
|
|
88
|
+
<summary>1.0.x – 1.6.x</summary>
|
|
73
89
|
|
|
74
90
|
| Version | Summary |
|
|
75
91
|
|---------|---------|
|
package/README.zh-CN.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**AI 驱动的终端编程助手,全面增强。**
|
|
6
6
|
|
|
7
|
-
[](./CHANGELOG.zh-CN.md)
|
|
8
8
|
[](#平台支持)
|
|
9
9
|
[](./LICENSE)
|
|
10
10
|
[](https://github.com/anthropics/claude-code)
|
|
@@ -37,67 +37,70 @@ LegnaCode 基于 [Claude Code CLI](https://github.com/anthropics/claude-code)
|
|
|
37
37
|
|
|
38
38
|
| 版本 | 摘要 |
|
|
39
39
|
|------|------|
|
|
40
|
+
| **2.1.8** | 修复 Computer Use 截屏权限死循环(Swift→Python bridge);修复 Agent 读完文件后停滞(read-then-act 指令) |
|
|
40
41
|
| **2.1.7** | 六大特性全面接线;配置联邦发现接入启动流程;修复全部 MiniMax/REPL/WebBrowser 工具类型;WebUI 预设切换清除旧字段;声明所有 feature flags |
|
|
41
42
|
| **2.1.6** | Hashline Edit 集成(Read 输出加 hash 锚点);修复 HashlineEditTool 类型错误;修复 prompts.ts 缺失 import;系统提示词工具路由引导 |
|
|
42
43
|
| **2.1.5** | 多提供商路由(28 家提供商,9 种协议);Hashline 编辑系统;持久 Shell + 输出最小化器;真实浏览器控制;持久 Python 环境;配置联邦发现;Admin WebUI 扩展(21 个预设) |
|
|
43
|
-
| **2.1.3** | 移除 /loop 定时任务对 GrowthBook 的依赖;修复 OpenAI 流式桥接空响应静默吞错误 |
|
|
44
|
-
| **2.1.2** | 修复 sandbox 未启用时 ctrl+o 崩溃(SandboxViolationStore.subscribe 防御) |
|
|
45
|
-
| **2.1.1** | DeepSeek 深度优化:自适应推理力度、精确定价、模型别名扩展、工具名编码 |
|
|
46
|
-
| **2.1.0** | 平台感知发布(Mac→darwin+linux,Win→win32);DeepSeek reasoning_content 多轮 400 修复;ShellProgressMessage 崩溃修复 |
|
|
47
|
-
| **2.0.5** | LegnaCode Office 像素办公室可视化(对话侧边栏、状态气泡、WebSocket、join-key 认证、布局持久化、通知音效、演示模式、i18n);DeepSeek reasoning_content 回传修复 |
|
|
48
|
-
| **2.0.4** | OpenAI Responses API 桥接(Codex 中转站);Admin 配置热加载 + UI 自动刷新;getGlobalSettings 死代码修复 |
|
|
49
|
-
| **2.0.3** | Kiro Gateway 优化;Admin 配置内联编辑;模型白名单移除;count_tokens 禁用;sandbox 移除 |
|
|
50
|
-
| **1.9.9** | Bash exit code 65 彻底修复;Admin 预设配置模板;ANTHROPIC_MODEL 字段 |
|
|
51
|
-
| **1.9.5** | Admin 预设配置模板(7 家 Provider);ANTHROPIC_MODEL 字段;迁移自动补全 |
|
|
52
|
-
| **1.9.4** | macOS Seatbelt 沙盒重写(默认允许策略);Shell.ts sandbox 返回路径修复 |
|
|
53
|
-
| **1.9.3** | OpenAI 兼容 API 路由;7 家国产模型适配器深度对齐;admin 配置复制;Bash sandbox 修复 |
|
|
54
|
-
| **1.9.2** | Computer Use Python 桥接(macOS + Windows);自动 Python 3.12+ venv 设置;Computer Use feature gate 全面解锁 |
|
|
55
|
-
| **1.9.0** | 可移植会话(相对路径 cwd);WebUI 全面改版(项目浏览器、记忆编辑器、力导向关系图谱);完整项目迁移(sessions + subagents + memory + skills + agents + rules + MCP 配置);配置切换改为指针文件 |
|
|
56
|
-
| **1.8.5** | Token 优化:压缩工具提示词(BashTool/AgentTool/TodoWrite/EnterPlanMode);修复 Kimi/MiniMax/MiMo 适配器 cache_control 被误删 |
|
|
57
44
|
|
|
58
45
|
<details>
|
|
59
|
-
<summary>1.
|
|
46
|
+
<summary>2.1.x 补丁</summary>
|
|
60
47
|
|
|
61
48
|
| 版本 | 摘要 |
|
|
62
49
|
|------|------|
|
|
50
|
+
| 2.1.3 | 移除 /loop 定时任务对 GrowthBook 的依赖;修复 OpenAI 流式桥接空响应静默吞错误 |
|
|
51
|
+
| 2.1.2 | 修复 sandbox 未启用时 ctrl+o 崩溃(SandboxViolationStore.subscribe 防御) |
|
|
52
|
+
| 2.1.1 | DeepSeek 深度优化:自适应推理力度、精确定价、模型别名扩展、工具名编码 |
|
|
53
|
+
| 2.1.0 | 平台感知发布(Mac→darwin+linux,Win→win32);DeepSeek reasoning_content 多轮 400 修复;ShellProgressMessage 崩溃修复 |
|
|
54
|
+
|
|
55
|
+
</details>
|
|
56
|
+
|
|
57
|
+
<details>
|
|
58
|
+
<summary>2.0.x</summary>
|
|
59
|
+
|
|
60
|
+
| 版本 | 摘要 |
|
|
61
|
+
|------|------|
|
|
62
|
+
| 2.0.5 | LegnaCode Office 像素办公室可视化(对话侧边栏、状态气泡、WebSocket、join-key 认证、布局持久化、通知音效、演示模式、i18n);DeepSeek reasoning_content 回传修复 |
|
|
63
|
+
| 2.0.4 | OpenAI Responses API 桥接(Codex 中转站);Admin 配置热加载 + UI 自动刷新;getGlobalSettings 死代码修复 |
|
|
64
|
+
| 2.0.3 | Kiro Gateway 优化;Admin 配置内联编辑;模型白名单移除;count_tokens 禁用;sandbox 移除 |
|
|
65
|
+
|
|
66
|
+
</details>
|
|
67
|
+
|
|
68
|
+
<details>
|
|
69
|
+
<summary>1.8.x – 1.9.x</summary>
|
|
70
|
+
|
|
71
|
+
| 版本 | 摘要 |
|
|
72
|
+
|------|------|
|
|
73
|
+
| 1.9.9 | Bash exit code 65 彻底修复;Admin 预设配置模板;ANTHROPIC_MODEL 字段 |
|
|
74
|
+
| 1.9.5 | Admin 预设配置模板(7 家 Provider);ANTHROPIC_MODEL 字段;迁移自动补全 |
|
|
75
|
+
| 1.9.4 | macOS Seatbelt 沙盒重写(默认允许策略);Shell.ts sandbox 返回路径修复 |
|
|
76
|
+
| 1.9.3 | OpenAI 兼容 API 路由;7 家国产模型适配器深度对齐;admin 配置复制;Bash sandbox 修复 |
|
|
77
|
+
| 1.9.2 | Computer Use Python 桥接(macOS + Windows);自动 Python 3.12+ venv 设置;Computer Use feature gate 全面解锁 |
|
|
78
|
+
| 1.9.0 | 可移植会话(相对路径 cwd);WebUI 全面改版(项目浏览器、记忆编辑器、力导向关系图谱);完整项目迁移;配置切换改为指针文件 |
|
|
79
|
+
| 1.8.5 | Token 优化:压缩工具提示词;修复 Kimi/MiniMax/MiMo 适配器 cache_control |
|
|
63
80
|
| 1.8.4 | 修复 `isVirtual in m` 崩溃 — 会话转录处理空值守卫 |
|
|
64
81
|
| 1.8.3 | GitHub Actions CI 自动发版工作流;OML agent 类型修复;全平台 Rust native addon 交叉编译 |
|
|
65
|
-
| 1.8.2 | 消息管线空值守卫修复运行时崩溃;Rust 原生 Addon
|
|
82
|
+
| 1.8.2 | 消息管线空值守卫修复运行时崩溃;Rust 原生 Addon darwin-arm64 编译 |
|
|
83
|
+
| 1.8.0 | Codex 全面融合:插件适配器 + 市场、Skills 发现、配置互通;TS/Python SDK;TTS + WebRTC 语音 |
|
|
66
84
|
|
|
67
85
|
</details>
|
|
68
86
|
|
|
69
|
-
| **1.8.0** | Codex 全面融合:插件适配器 + 市场、Skills 发现、配置互通;TS/Python SDK;TTS + WebRTC 语音 |
|
|
70
|
-
|
|
71
87
|
<details>
|
|
72
|
-
<summary
|
|
88
|
+
<summary>1.0.x – 1.6.x</summary>
|
|
73
89
|
|
|
74
90
|
| 版本 | 摘要 |
|
|
75
91
|
|------|------|
|
|
92
|
+
| 1.6.1 | Rust NAPI addon(cosine/tfidf/hash/tokens);内核沙盒(Seatbelt/seccomp);两阶段唤醒;关键词密度 L1 |
|
|
93
|
+
| 1.6.0 | 协作模式(`/mode`);JS REPL 桥接;JSON-RPC app-server;agent 配置迁移(`/migrate`) |
|
|
76
94
|
| 1.5.7 | Git 风格 `/fork` 命令:从任意消息分叉(`@N`)、列出分支树、切换分支 |
|
|
77
|
-
| 1.5.6 | WebUI SSE 超时修复(255s 最大值);controller 重复关闭崩溃修复 |
|
|
78
|
-
| 1.5.4 | 全平台二进制同步重发 |
|
|
79
95
|
| 1.5.3 | Hermes 自我进化闭环;Qwen 适配器;WebUI 聊天查看器与实时聊天;自动 Skill 创建 |
|
|
80
|
-
| 1.5.2 | 性能审计:CodeGraph async 化 + undoTracker 大文件保护 + 状态文案 i18n |
|
|
81
|
-
| 1.5.1 | Skill 主动调用(OML 1% 规则);前端/设计指令自动注入;增强 designer agent |
|
|
82
96
|
| 1.5.0 | 修复 REPL 启动死锁;移除 /undo 静态导入;AtomCode 全部特性完整接线 |
|
|
83
|
-
| 1.4.9 | Baseline(无 AVX)构建,支持老款 x64 CPU
|
|
84
|
-
| 1.4.8 | AtomCode 融合(Pangu CJK
|
|
85
|
-
| 1.4.7 | claude-mem 融合(content-hash 去重、token
|
|
86
|
-
| 1.4.6 | OML skill 崩溃修复;计划+记忆改为项目本地;compound engineering 融合 |
|
|
87
|
-
| 1.4.5 | OpenViking 内容分级融合(L0/L1/L2 降级 + 预算封顶注入) |
|
|
88
|
-
| 1.4.4 | 状态提示改为 spinner 行显示;新增功能对比文档 |
|
|
97
|
+
| 1.4.9 | Baseline(无 AVX)构建,支持老款 x64 CPU |
|
|
98
|
+
| 1.4.8 | AtomCode 融合(Pangu CJK 间距、挫败检测、循环守卫、错误文件注入) |
|
|
99
|
+
| 1.4.7 | claude-mem 融合(content-hash 去重、token 经济学、90 天衰减、隐私标签) |
|
|
89
100
|
| 1.4.3 | mempalace 记忆融合(DrawerStore + TF-IDF + 4 层栈 + 知识图谱) |
|
|
90
|
-
| 1.4.2 | 进度反馈增强(8 个静默路径修复);verbose 默认开启 |
|
|
91
|
-
| 1.3.6 | Windows 路径分隔符修复 |
|
|
92
|
-
| 1.3.5 | SessionStart hook 修复;Windows 渲染修复 |
|
|
93
|
-
| 1.3.4 | OML Superpowers(11 个 skill);SessionStart 引导 |
|
|
94
|
-
| 1.3.3 | OML 智能编排(19 个 agent skill) |
|
|
95
|
-
| 1.3.2 | 禁用 History Snip;Windows 流式渲染修复 |
|
|
96
|
-
| 1.3.1 | 1M 模型 snip 阈值修复 |
|
|
97
101
|
| 1.3.0 | 项目本地化存储;`legna migrate` |
|
|
98
102
|
| 1.2.1 | 模型适配器层(MiMo、GLM、DeepSeek、Kimi、MiniMax) |
|
|
99
103
|
| 1.2.0 | 会话按项目分组;Windows 原生编译 |
|
|
100
|
-
| 1.1.5–1.1.9 | Windows 安装修复;WebUI 管理面板 |
|
|
101
104
|
| 1.0.0–1.0.9 | 初始发布;Feature Flags;i18n;BUDDY 宠物 |
|
|
102
105
|
|
|
103
106
|
</details>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legna-lnc/legnacode",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
4
4
|
"description": "LegnaCode — legna.lnc's official CLI for coding assistance",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -143,13 +143,13 @@
|
|
|
143
143
|
"bun": ">=1.2.0"
|
|
144
144
|
},
|
|
145
145
|
"optionalDependencies": {
|
|
146
|
-
"@legna-lnc/legnacode-darwin-arm64": "2.1.
|
|
147
|
-
"@legna-lnc/legnacode-darwin-x64": "2.1.
|
|
148
|
-
"@legna-lnc/legnacode-darwin-x64-baseline": "2.1.
|
|
149
|
-
"@legna-lnc/legnacode-linux-x64": "2.1.
|
|
150
|
-
"@legna-lnc/legnacode-linux-x64-baseline": "2.1.
|
|
151
|
-
"@legna-lnc/legnacode-linux-arm64": "2.1.
|
|
152
|
-
"@legna-lnc/legnacode-win32-x64": "2.1.
|
|
153
|
-
"@legna-lnc/legnacode-win32-ia32": "2.1.
|
|
146
|
+
"@legna-lnc/legnacode-darwin-arm64": "2.1.8",
|
|
147
|
+
"@legna-lnc/legnacode-darwin-x64": "2.1.8",
|
|
148
|
+
"@legna-lnc/legnacode-darwin-x64-baseline": "2.1.8",
|
|
149
|
+
"@legna-lnc/legnacode-linux-x64": "2.1.8",
|
|
150
|
+
"@legna-lnc/legnacode-linux-x64-baseline": "2.1.8",
|
|
151
|
+
"@legna-lnc/legnacode-linux-arm64": "2.1.8",
|
|
152
|
+
"@legna-lnc/legnacode-win32-x64": "2.1.8",
|
|
153
|
+
"@legna-lnc/legnacode-win32-ia32": "2.1.8"
|
|
154
154
|
}
|
|
155
155
|
}
|