Skip to content

Commit 4204ab8

Browse files
committed
fix: exclude libapp.a from iOS bundle resources (TestFlight validation)
1 parent 10e167a commit 4204ab8

File tree

13 files changed

+925
-331
lines changed

13 files changed

+925
-331
lines changed

app/page.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ const VIEW_ICONS: Record<string, { icon: string; label: string }> = {
9090
diff: { icon: 'lucide:git-compare', label: 'Diff' },
9191
git: { icon: 'lucide:git-branch', label: 'Git' },
9292
workshop: { icon: 'lucide:bot', label: 'Workshop' },
93+
skills: { icon: 'lucide:sparkles', label: 'Skills' },
9394
prism: { icon: 'lucide:file-text', label: 'Prism' },
9495
settings: { icon: 'lucide:settings', label: 'Settings' },
9596
}
@@ -1054,6 +1055,9 @@ export default function EditorLayout() {
10541055
case 'view-workshop':
10551056
setView('workshop')
10561057
break
1058+
case 'view-skills':
1059+
setView('skills')
1060+
break
10571061
case 'find-files':
10581062
setQuickOpenVisible(true)
10591063
break

components/command-palette.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ type CommandId =
2929
| 'view-preview'
3030
| 'view-git'
3131
| 'view-workshop'
32+
| 'view-skills'
3233
| 'view-settings'
3334
| 'open-onboarding'
3435
| 'open-new-window'
@@ -228,6 +229,14 @@ const COMMANDS: CommandItem[] = [
228229
icon: 'lucide:bot',
229230
group: 'navigate',
230231
},
232+
{
233+
id: 'view-skills',
234+
label: 'Go to Skills',
235+
hint: 'Open the skills library',
236+
keywords: ['skills', 'library', 'catalog', 'marketplace'],
237+
icon: 'lucide:sparkles',
238+
group: 'navigate',
239+
},
231240

232241
{
233242
id: 'open-new-window',
@@ -348,6 +357,7 @@ const VIEW_CONTEXT_COMMANDS: Partial<Record<ViewId, CommandId[]>> = {
348357
],
349358
git: ['git-commit', 'toggle-git-panel', 'git-push', 'git-pull', 'git-stash', 'toggle-terminal'],
350359
workshop: ['view-workshop', 'open-new-window', 'view-editor', 'view-git'],
360+
skills: ['view-skills', 'view-workshop', 'open-new-window', 'view-editor'],
351361

352362
preview: ['preview-refresh', 'view-editor'],
353363
}

0 commit comments

Comments
 (0)