wukong-gitlog-cli 1.0.45 → 1.0.46

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,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.46](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.45...v1.0.46) (2026-04-29)
6
+
5
7
  ### [1.0.45](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.44...v1.0.45) (2026-02-28)
6
8
 
7
9
 
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wukong-gitlog-cli",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "description": "Advanced Git commit log exporter with Excel/JSON/TXT output, grouping, stats and CLI.",
5
5
  "keywords": [
6
6
  "git",
@@ -59,7 +59,7 @@
59
59
  "cli:overtime-text-us": "node ./src/index.mjs --overtime --limit 50 --format text --out commits.txt --country US --work-start 10 --work-end 19 --lunch-start 12 --lunch-end 13",
60
60
  "cli:overtime-text-us-outdir": "node ./src/index.mjs --out-dir ../output --overtime --limit 50 --format text --out commits.txt --country US --work-start 10 --work-end 19 --lunch-start 12 --lunch-end 13",
61
61
  "cli:overtime-text-us-parent": "node ./src/index.mjs --out-parent --overtime --limit 50 --format text --out commits.txt --country US --work-start 10 --work-end 19 --lunch-start 12 --lunch-end 13",
62
- "cli:serve": "node ./src/index.mjs serve",
62
+ "cli:serve": "node ./src/index.mjs serve --no-merges --numstat",
63
63
  "cli:text-demo": "node ./src/index.mjs export --format text --limit 5 ",
64
64
  "cli:text-demo-parent": "node ./src/index.mjs export --out-parent --format text --limit 5 ",
65
65
  "format": "prettier --write \"src/**/*.{js,mjs}\"",
package/web/index.html CHANGED
@@ -234,11 +234,11 @@
234
234
 
235
235
  <section class="chartsHalf" id="totalCommitsChangedRankSection">
236
236
  <div class="chart-card">
237
- <h2 data-i18n="totalCommitsChangedAll">开发者 提交Changed 总次数</h2>
237
+ <h2 data-i18n="totalCommitsChangedAll">开发者 提交Changed 总数</h2>
238
238
  <div id="authorTotalCommitsChangedRank" class="rank-list"></div>
239
239
  </div>
240
240
  <div class="chart-card">
241
- <h2 data-i18n="totalCommitsChangedAll">开发者 提交Changed 总次数</h2>
241
+ <h2 data-i18n="totalCommitsChangedAll">开发者 提交Changed 总数</h2>
242
242
  <div
243
243
  id="authorTotalCommitsChangedRankSummary"
244
244
  style="height: 600px"
@@ -19,7 +19,7 @@ export default {
19
19
  totalCommits: "开发者 累计提交次数",
20
20
  totalCommitsCount: "开发者 提交总次数",
21
21
  totalCommitsChanged: "开发者 累计提交Changed",
22
- totalCommitsChangedAll: '开发者 提交Changed 总次数',
22
+ totalCommitsChangedAll: '开发者 提交Changed 总数',
23
23
  commitsList: "提交清单",
24
24
  searchPlaceholder: "搜索作者/信息/Hash/Date",
25
25
  per: '每页显示',