tb-order-sync 0.4.0 → 0.4.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
@@ -2,6 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.4.1] - 2026-03-19
6
+
7
+ ### Added
8
+
9
+ - Added standard GitHub Release packaging workflow for macOS and Windows.
10
+ - Added complete distribution package output including startup scripts, `.env.example`, `快速开始.txt`, and `公司同事使用说明.md`.
11
+
12
+ ### Changed
13
+
14
+ - Changed release packaging to produce platform-specific archives:
15
+ - `tb-order-sync-macos-x64-<version>.zip`
16
+ - `tb-order-sync-windows-x64-<version>.zip`
17
+
5
18
  ## [0.4.0] - 2026-03-19
6
19
 
7
20
  ### Added
package/README.md CHANGED
@@ -67,6 +67,10 @@ tb daemon status
67
67
  | Python 兼容入口 | 调试或源码环境 | `python main.py` |
68
68
  | 打包分发 | 免安装交付 | `dist/sync_service/` |
69
69
 
70
+ GitHub Release 现已提供标准完整分发包:
71
+ - Windows: `tb-order-sync-windows-x64-<version>.zip`
72
+ - macOS: `tb-order-sync-macos-x64-<version>.zip`
73
+
70
74
  ### 常用命令速查
71
75
 
72
76
  ```bash
package/build.py CHANGED
@@ -22,6 +22,7 @@ DIST_RUNTIME_FILES = [
22
22
  "启动.bat",
23
23
  "启动.command",
24
24
  "快速开始.txt",
25
+ "公司同事使用说明.md",
25
26
  ]
26
27
 
27
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tb-order-sync",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Tencent Docs order sync service with gross-profit automation, refund marking, startup self-check, autostart daemon, and tb CLI",
5
5
  "bin": {
6
6
  "tb": "bin/tb.js"
package/sync_service.spec CHANGED
@@ -23,6 +23,7 @@ a = Analysis(
23
23
  # Bundle .env.example so first-run setup can use it as template
24
24
  (str(root / '.env.example'), '.'),
25
25
  (str(root / '快速开始.txt'), '.'),
26
+ (str(root / '公司同事使用说明.md'), '.'),
26
27
  ],
27
28
  hiddenimports=[
28
29
  'config',