groove-dev 0.27.159 → 0.27.161
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/CLAUDE.md +7 -0
- package/node_modules/@groove-dev/cli/package.json +1 -1
- package/node_modules/@groove-dev/daemon/package.json +1 -1
- package/node_modules/@groove-dev/daemon/src/tunnel-manager.js +4 -2
- package/node_modules/@groove-dev/gui/dist/assets/{index-Bij9o_dc.js → index-DpRdb7o1.js} +38 -38
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/node_modules/@groove-dev/gui/src/components/layout/welcome-splash.jsx +9 -1
- package/node_modules/@groove-dev/gui/src/components/settings/quick-connect.jsx +1 -1
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/tunnel-manager.js +4 -2
- package/packages/gui/dist/assets/{index-Bij9o_dc.js → index-DpRdb7o1.js} +38 -38
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/layout/welcome-splash.jsx +9 -1
- package/packages/gui/src/components/settings/quick-connect.jsx +1 -1
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
8
8
|
<title>Groove GUI</title>
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-DpRdb7o1.js"></script>
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/vendor-26L3JoZv.js">
|
|
11
11
|
<link rel="modulepreload" crossorigin href="/assets/reactflow-DoBZjiHE.js">
|
|
12
12
|
<link rel="modulepreload" crossorigin href="/assets/codemirror-BYKpdS2W.js">
|
|
@@ -41,6 +41,7 @@ export function WelcomeSplash() {
|
|
|
41
41
|
const toggleQuickConnect = useGrooveStore((s) => s.toggleQuickConnect);
|
|
42
42
|
const addToast = useGrooveStore((s) => s.addToast);
|
|
43
43
|
|
|
44
|
+
const tunnelStep = useGrooveStore((s) => s.tunnelConnectStep);
|
|
44
45
|
const [browsing, setBrowsing] = useState(false);
|
|
45
46
|
const [connectingId, setConnectingId] = useState(null);
|
|
46
47
|
|
|
@@ -216,7 +217,14 @@ export function WelcomeSplash() {
|
|
|
216
217
|
</button>
|
|
217
218
|
<div className="flex items-center gap-1.5 flex-shrink-0">
|
|
218
219
|
{connectingId === server.id ? (
|
|
219
|
-
<
|
|
220
|
+
<div className="flex items-center gap-1.5">
|
|
221
|
+
<Loader2 size={14} className="text-text-3 animate-spin" />
|
|
222
|
+
{tunnelStep?.id === server.id && tunnelStep?.step && (
|
|
223
|
+
<span className="text-2xs text-text-3 font-sans">
|
|
224
|
+
{{ testing: 'Testing…', installing: 'Installing…', checking: 'Checking for updates…', upgrading: 'Updating remote…', starting: 'Starting daemon…', connecting: 'Connecting…', forwarding: 'Establishing tunnel…' }[tunnelStep.step] || tunnelStep.step}
|
|
225
|
+
</span>
|
|
226
|
+
)}
|
|
227
|
+
</div>
|
|
220
228
|
) : server.active ? (
|
|
221
229
|
<>
|
|
222
230
|
<button
|
|
@@ -191,7 +191,7 @@ export function QuickConnect() {
|
|
|
191
191
|
<Loader2 size={14} className="text-text-3 animate-spin" />
|
|
192
192
|
{tunnelStep?.id === server.id && tunnelStep?.step && (
|
|
193
193
|
<span className="text-2xs text-text-3 font-sans">
|
|
194
|
-
{{ testing: 'Testing…', installing: 'Installing…', upgrading: 'Updating remote…', starting: 'Starting daemon…', connecting: 'Connecting…', forwarding: 'Establishing tunnel…' }[tunnelStep.step] || tunnelStep.step}
|
|
194
|
+
{{ testing: 'Testing…', installing: 'Installing…', checking: 'Checking for updates…', upgrading: 'Updating remote…', starting: 'Starting daemon…', connecting: 'Connecting…', forwarding: 'Establishing tunnel…' }[tunnelStep.step] || tunnelStep.step}
|
|
195
195
|
</span>
|
|
196
196
|
)}
|
|
197
197
|
</div>
|