zen-gitsync 2.10.6 → 2.10.7
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/package.json +1 -1
- package/src/ui/public/assets/index-5z2rWrTJ.js +106 -0
- package/src/ui/public/assets/index-bVmQ0atC.css +1 -0
- package/src/ui/public/assets/{vendor-CMQOaDSj.js → vendor-CrYGMytM.js} +1 -1
- package/src/ui/public/index.html +3 -3
- package/src/ui/server/routes/config.js +4 -2
- package/src/ui/public/assets/index-CE8MuEHT.js +0 -108
- package/src/ui/public/assets/index-Tb2lPpLB.css +0 -1
- package/src/ui/server/index_pro.js +0 -5483
package/src/ui/public/index.html
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
8
8
|
<title>Zen GitSync</title>
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
10
|
-
<link rel="modulepreload" crossorigin href="/assets/vendor-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-5z2rWrTJ.js"></script>
|
|
10
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-CrYGMytM.js">
|
|
11
11
|
<link rel="stylesheet" crossorigin href="/assets/vendor-BreftYKt.css">
|
|
12
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
12
|
+
<link rel="stylesheet" crossorigin href="/assets/index-bVmQ0atC.css">
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
15
15
|
<div id="app"></div>
|
|
@@ -449,7 +449,8 @@ export function registerConfigRoutes({
|
|
|
449
449
|
name: command.name,
|
|
450
450
|
description: command.description || '',
|
|
451
451
|
directory: command.directory || '',
|
|
452
|
-
command: command.command
|
|
452
|
+
command: command.command,
|
|
453
|
+
params: Array.isArray(command.params) ? command.params : []
|
|
453
454
|
}
|
|
454
455
|
|
|
455
456
|
config.customCommands.push(newCommand)
|
|
@@ -505,7 +506,8 @@ export function registerConfigRoutes({
|
|
|
505
506
|
name: command.name,
|
|
506
507
|
description: command.description || '',
|
|
507
508
|
directory: command.directory || '',
|
|
508
|
-
command: command.command
|
|
509
|
+
command: command.command,
|
|
510
|
+
params: Array.isArray(command.params) ? command.params : []
|
|
509
511
|
}
|
|
510
512
|
await configManager.saveConfig(config)
|
|
511
513
|
} else {
|