groove-dev 0.27.45 → 0.27.48
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/default/fix-beta-endpoint-deployment.md +68 -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/api.js +1 -1
- package/node_modules/@groove-dev/daemon/src/integrations.js +2 -2
- package/node_modules/@groove-dev/daemon/src/providers/groove-network.js +3 -3
- package/node_modules/@groove-dev/gui/dist/assets/{index-BoIbnaqa.js → index-B9oPxmNj.js} +21 -21
- 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/views/settings.jsx +5 -4
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/api.js +1 -1
- package/packages/daemon/src/integrations.js +2 -2
- package/packages/daemon/src/providers/groove-network.js +3 -3
- package/packages/gui/dist/assets/{index-BoIbnaqa.js → index-B9oPxmNj.js} +21 -21
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/views/settings.jsx +5 -4
|
@@ -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-B9oPxmNj.js"></script>
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/vendor-C0HXlhrU.js">
|
|
11
11
|
<link rel="modulepreload" crossorigin href="/assets/reactflow-BQPfi37R.js">
|
|
12
12
|
<link rel="modulepreload" crossorigin href="/assets/codemirror-BBL3i_JW.js">
|
|
@@ -1081,7 +1081,8 @@ export default function SettingsView() {
|
|
|
1081
1081
|
);
|
|
1082
1082
|
}
|
|
1083
1083
|
|
|
1084
|
-
const
|
|
1084
|
+
const visibleProviders = providers.filter((p) => p.id !== 'groove-network');
|
|
1085
|
+
const connectedCount = visibleProviders.filter((p) => {
|
|
1085
1086
|
if (p.authType === 'local') return p.installed;
|
|
1086
1087
|
if (p.authType === 'subscription') return p.installed;
|
|
1087
1088
|
return p.installed && p.hasKey;
|
|
@@ -1117,10 +1118,10 @@ export default function SettingsView() {
|
|
|
1117
1118
|
<div className="flex items-center gap-2 mb-2.5 px-0.5">
|
|
1118
1119
|
<span className="text-2xs font-semibold text-text-3 font-sans uppercase tracking-wider">Providers</span>
|
|
1119
1120
|
<div className="flex-1 h-px bg-border-subtle" />
|
|
1120
|
-
<span className="text-2xs text-text-4 font-sans">{connectedCount}/{
|
|
1121
|
+
<span className="text-2xs text-text-4 font-sans">{connectedCount}/{visibleProviders.length} connected</span>
|
|
1121
1122
|
</div>
|
|
1122
1123
|
<div className="grid grid-cols-4 gap-3">
|
|
1123
|
-
{
|
|
1124
|
+
{visibleProviders.map((p) => (
|
|
1124
1125
|
<ProviderCard key={p.id} provider={p} onKeyChange={loadProviders} />
|
|
1125
1126
|
))}
|
|
1126
1127
|
</div>
|
|
@@ -1159,7 +1160,7 @@ export default function SettingsView() {
|
|
|
1159
1160
|
onChange={(e) => updateConfig('defaultProvider', e.target.value)}
|
|
1160
1161
|
className="w-full h-8 px-2.5 text-xs bg-surface-0 border border-border-subtle rounded-md text-text-0 font-mono focus:outline-none focus:ring-1 focus:ring-accent cursor-pointer"
|
|
1161
1162
|
>
|
|
1162
|
-
{
|
|
1163
|
+
{visibleProviders.filter((p) => p.installed && (p.authType === 'local' || p.authType === 'subscription' || p.hasKey)).map((p) => (
|
|
1163
1164
|
<option key={p.id} value={p.id}>{p.name}</option>
|
|
1164
1165
|
))}
|
|
1165
1166
|
</select>
|