glmcode 0.1.18 → 0.1.19

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.1.19 (2026-08-29)
4
+
5
+ - **修复版本号显示旧版**:`src/cli.js` 的 VERSION 常量此前硬编码为 0.1.16 且未随发版更新,导致已装 0.1.18 但启动页/--version 仍显示 0.1.16;现已与 package.json 同步
6
+ - 版本升级至 0.1.19
7
+
3
8
  ## 0.1.18 (2026-08-29)
4
9
 
5
10
  - **退出总结页重做为「左 LOGO 右总结」**:左侧直接复用启动页的 GLM 大 LOGO(welcomeBlock 同一数据源,一个符号不改),右侧并排列出会话总结(时长/模型/执行指令/生成文件/Token 消耗),不再有"最终总结""干净不干净"等废话
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glmcode",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "GLM coding agent CLI with shell tools, skills (SKILL.md/zip auto-extract), streaming chat, slash-command menu and bottom status bar. Auto-installs its dependencies.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -7,7 +7,7 @@ import {fileURLToPath} from "node:url";
7
7
  import termkit from "terminal-kit";
8
8
  const term = termkit.terminal;
9
9
 
10
- const VERSION="0.1.16";
10
+ const VERSION="0.1.19";
11
11
  const BASE_URL="https://open.bigmodel.cn/api/paas/v4";
12
12
  const API_KEYS_URL="https://open.bigmodel.cn/usercenter/proj-mgmt/apikeys";
13
13
  const HOME=os.homedir();