[PR #15182] [MERGED] app: add launch tab for a simple way to launch integrations #25602

Closed
opened 2026-04-19 18:18:12 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/15182
Author: @ParthSareen
Created: 3/31/2026
Status: Merged
Merged: 4/2/2026
Merged by: @ParthSareen

Base: mainHead: parth-app-to-launch


📝 Commits (5)

  • f3b845b app: add launch options to app
  • 15e8e27 Persist last home view and refine launch commands UI
  • 58a86b2 app: add integration icons and reuse CopyButton in launch commands
  • b0bb718 store: default to launch
  • 0e8064b app: default LastHomeView to launch instead of chat

📊 Changes

20 files changed (+643 additions, -24 deletions)

View changed files

📝 app/store/database.go (+43 -5)
📝 app/store/store.go (+7 -0)
📝 app/ui/app/codegen/gotypes.gen.ts (+2 -0)
app/ui/app/public/launch-icons/claude.svg (+7 -0)
app/ui/app/public/launch-icons/codex-dark.svg (+1 -0)
app/ui/app/public/launch-icons/codex.svg (+1 -0)
app/ui/app/public/launch-icons/droid.svg (+8 -0)
app/ui/app/public/launch-icons/openclaw.svg (+242 -0)
app/ui/app/public/launch-icons/opencode.svg (+7 -0)
app/ui/app/public/launch-icons/pi-dark.svg (+9 -0)
app/ui/app/public/launch-icons/pi.svg (+9 -0)
📝 app/ui/app/src/components/ChatSidebar.tsx (+21 -11)
📝 app/ui/app/src/components/CopyButton.tsx (+4 -0)
app/ui/app/src/components/LaunchCommands.tsx (+133 -0)
📝 app/ui/app/src/components/Settings.tsx (+6 -2)
📝 app/ui/app/src/hooks/useSettings.ts (+3 -0)
📝 app/ui/app/src/routes/c.$chatId.tsx (+44 -4)
📝 app/ui/app/src/routes/index.tsx (+9 -2)
app/ui/app/src/utils/clipboard.test.ts (+57 -0)
app/ui/app/src/utils/clipboard.ts (+30 -0)

📄 Description

Currently the app has no mention of ollama launch causing users to not know which steps to take next.

Keeping it simple for now by adding commands which can be copy pasted.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/15182 **Author:** [@ParthSareen](https://github.com/ParthSareen) **Created:** 3/31/2026 **Status:** ✅ Merged **Merged:** 4/2/2026 **Merged by:** [@ParthSareen](https://github.com/ParthSareen) **Base:** `main` ← **Head:** `parth-app-to-launch` --- ### 📝 Commits (5) - [`f3b845b`](https://github.com/ollama/ollama/commit/f3b845bf0b501bda4785c83784b9ce39d4a00945) app: add launch options to app - [`15e8e27`](https://github.com/ollama/ollama/commit/15e8e27d5ff3fdf05fca8e684a11b61ede9c2337) Persist last home view and refine launch commands UI - [`58a86b2`](https://github.com/ollama/ollama/commit/58a86b2a0169760c7330324816568a32988db8da) app: add integration icons and reuse CopyButton in launch commands - [`b0bb718`](https://github.com/ollama/ollama/commit/b0bb7187be50a8ff51fc0ac97ced4f69db448936) store: default to launch - [`0e8064b`](https://github.com/ollama/ollama/commit/0e8064bf3c6e8db2fafb67335c5158bfecf73dfd) app: default LastHomeView to launch instead of chat ### 📊 Changes **20 files changed** (+643 additions, -24 deletions) <details> <summary>View changed files</summary> 📝 `app/store/database.go` (+43 -5) 📝 `app/store/store.go` (+7 -0) 📝 `app/ui/app/codegen/gotypes.gen.ts` (+2 -0) ➕ `app/ui/app/public/launch-icons/claude.svg` (+7 -0) ➕ `app/ui/app/public/launch-icons/codex-dark.svg` (+1 -0) ➕ `app/ui/app/public/launch-icons/codex.svg` (+1 -0) ➕ `app/ui/app/public/launch-icons/droid.svg` (+8 -0) ➕ `app/ui/app/public/launch-icons/openclaw.svg` (+242 -0) ➕ `app/ui/app/public/launch-icons/opencode.svg` (+7 -0) ➕ `app/ui/app/public/launch-icons/pi-dark.svg` (+9 -0) ➕ `app/ui/app/public/launch-icons/pi.svg` (+9 -0) 📝 `app/ui/app/src/components/ChatSidebar.tsx` (+21 -11) 📝 `app/ui/app/src/components/CopyButton.tsx` (+4 -0) ➕ `app/ui/app/src/components/LaunchCommands.tsx` (+133 -0) 📝 `app/ui/app/src/components/Settings.tsx` (+6 -2) 📝 `app/ui/app/src/hooks/useSettings.ts` (+3 -0) 📝 `app/ui/app/src/routes/c.$chatId.tsx` (+44 -4) 📝 `app/ui/app/src/routes/index.tsx` (+9 -2) ➕ `app/ui/app/src/utils/clipboard.test.ts` (+57 -0) ➕ `app/ui/app/src/utils/clipboard.ts` (+30 -0) </details> ### 📄 Description Currently the app has no mention of `ollama launch` causing users to not know which steps to take next. Keeping it simple for now by adding commands which can be copy pasted. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-19 18:18:12 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#25602