zen-gitsync 2.11.1 → 2.11.3

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/README.md CHANGED
@@ -76,7 +76,7 @@ start /min cmd /k "g -y --path=你要同步的文件夹 --interval"
76
76
  ```shell
77
77
  start /min cmd /k "g --cmd=\"echo hello\" --cmd-interval=5" # 每5秒执行一次echo hello
78
78
  start /min cmd /k "g --cmd=\"echo at-time\" --at=23:59" # 在23:59执行一次echo at-time
79
- start /min cmd /k "g --cmd=\"echo daily\" --at=23:59 --daily" # 每天23:59执行一次echo daily
79
+ start /min cmd /k "g --cmd=\"echo daily\" --at=23:59 --daily" # 每天23:59执行一次echo daily
80
80
  ```
81
81
 
82
82
  #### 不显示git diff内容
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-gitsync",
3
- "version": "2.11.1",
3
+ "version": "2.11.3",
4
4
  "description": "一个 git 提交的工具",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/src/config.js CHANGED
@@ -32,6 +32,12 @@ const defaultConfig = {
32
32
  refId: ''
33
33
  },
34
34
  currentDirectory: '',
35
+ // 提交设置
36
+ isStandardCommit: true,
37
+ skipHooks: false,
38
+ autoQuickPushOnEnter: false,
39
+ autoSetDefaultMessage: false,
40
+ autoClosePushModal: false,
35
41
  // 通用设置
36
42
  theme: 'light', // 主题: light | dark | auto
37
43
  locale: 'zh-CN' // 语言: zh-CN | en-US