zen-gitsync 2.1.3 → 2.1.8
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/LICENSE +21 -21
- package/README.md +96 -96
- package/index.js +2 -2
- package/package.json +69 -66
- package/src/config.js +51 -51
- package/src/gitCommit.js +261 -261
- package/src/ui/public/assets/index-B7Bmz9T9.js +22 -0
- package/src/ui/public/assets/index-DNVXEFTm.css +1 -0
- package/src/ui/public/assets/{vendor-Dy1zosHw.js → vendor-Bm8yNvvz.js} +1 -1
- package/src/ui/public/favicon.svg +26 -26
- package/src/ui/public/index.html +3 -3
- package/src/ui/public/logo.svg +26 -26
- package/src/ui/server/index.js +231 -60
- package/src/ui/client/README.md +0 -5
- package/src/ui/client/auto-imports.d.ts +0 -10
- package/src/ui/client/components.d.ts +0 -33
- package/src/ui/client/index.html +0 -13
- package/src/ui/client/package.json +0 -28
- package/src/ui/client/public/favicon.svg +0 -27
- package/src/ui/client/public/logo.svg +0 -27
- package/src/ui/client/public/vite.svg +0 -1
- package/src/ui/client/src/App.vue +0 -984
- package/src/ui/client/src/assets/logo.svg +0 -27
- package/src/ui/client/src/components/CommitForm.vue +0 -2158
- package/src/ui/client/src/components/GitStatus.vue +0 -1621
- package/src/ui/client/src/components/LogList.vue +0 -1937
- package/src/ui/client/src/main.ts +0 -7
- package/src/ui/client/src/stores/configStore.ts +0 -212
- package/src/ui/client/src/stores/gitLogStore.ts +0 -790
- package/src/ui/client/src/stores/gitStore.ts +0 -443
- package/src/ui/client/src/vite-env.d.ts +0 -1
- package/src/ui/client/stats.html +0 -4949
- package/src/ui/client/tsconfig.app.json +0 -14
- package/src/ui/client/tsconfig.json +0 -7
- package/src/ui/client/tsconfig.node.json +0 -24
- package/src/ui/client/vite.config.ts +0 -50
- package/src/ui/public/assets/index-CekdGwXY.js +0 -20
- package/src/ui/public/assets/index-SwSkrgGk.css +0 -1
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<!-- 主分支 -->
|
|
3
|
-
<line x1="40" y1="40" x2="40" y2="160" stroke="#34495e" stroke-width="8" stroke-linecap="round" />
|
|
4
|
-
|
|
5
|
-
<!-- 特性分支 -->
|
|
6
|
-
<path d="M40,70 C60,70 80,90 80,110 L80,130" stroke="#3498db" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" fill="none" />
|
|
7
|
-
|
|
8
|
-
<!-- 开发分支 -->
|
|
9
|
-
<path d="M40,100 C60,100 100,110 100,130 L100,160" stroke="#2ecc71" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" fill="none" />
|
|
10
|
-
|
|
11
|
-
<!-- 修复分支 -->
|
|
12
|
-
<path d="M40,130 C60,130 120,140 120,160" stroke="#e74c3c" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" fill="none" />
|
|
13
|
-
|
|
14
|
-
<!-- 合并点 -->
|
|
15
|
-
<path d="M80,130 C80,145 60,145 40,145" stroke="#3498db" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" fill="none" />
|
|
16
|
-
|
|
17
|
-
<!-- 节点 -->
|
|
18
|
-
<circle cx="40" cy="40" r="10" fill="#34495e" />
|
|
19
|
-
<circle cx="40" cy="70" r="10" fill="#34495e" />
|
|
20
|
-
<circle cx="40" cy="100" r="10" fill="#34495e" />
|
|
21
|
-
<circle cx="40" cy="130" r="10" fill="#34495e" />
|
|
22
|
-
<circle cx="40" cy="145" r="10" fill="#34495e" />
|
|
23
|
-
<circle cx="40" cy="160" r="10" fill="#34495e" />
|
|
24
|
-
<circle cx="80" cy="130" r="10" fill="#3498db" />
|
|
25
|
-
<circle cx="100" cy="160" r="10" fill="#2ecc71" />
|
|
26
|
-
<circle cx="120" cy="160" r="10" fill="#e74c3c" />
|
|
27
|
-
</svg>
|