mihomo-cli 1.3.0 → 1.3.1

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.1] - 2026-04-07
4
+
5
+ ### 优化
6
+
7
+ - **短帮助命令顺序**:调整常用命令展示顺序,`ui` 放最后,`ow` 提前到第三位
8
+
9
+ ---
10
+
3
11
  ## [1.3.0] - 2026-04-07
4
12
 
5
13
  ### 架构重构
package/index.js CHANGED
@@ -68,11 +68,11 @@ function printShortHelp() {
68
68
  colors.bold('sub') +
69
69
  ' [use|update] 订阅管理\n' +
70
70
  ' ' +
71
- colors.bold('ui') +
72
- ' [zash|dash|yacd] 打开 Web UI\n' +
73
- ' ' +
74
71
  colors.bold('ow') +
75
- ' [on|off] 覆写配置\n',
72
+ ' [on|off] 覆写配置\n' +
73
+ ' ' +
74
+ colors.bold('ui') +
75
+ ' [zash|dash|yacd] 打开 Web UI\n',
76
76
  );
77
77
  }
78
78
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mihomo-cli",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "A terminal-based mihomo (Clash.Meta) client for macOS",
5
5
  "bin": {
6
6
  "mihomo-cli": "index.js",