[PR #478] [MERGED] Add commercial use nudge banners #3327

Closed
opened 2026-07-15 02:02:14 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/478
Author: @gschier
Created: 6/19/2026
Status: Merged
Merged: 6/30/2026
Merged by: @gschier

Base: mainHead: codex/commercial-use-banners


📝 Commits (10+)

  • 4092511 Add commercial use upsell banners
  • 98794fa Merge branch 'main' into codex/commercial-use-banners
  • 693768f Refine commercial use banner attribution
  • 84b89e2 update theme generation logic
  • fd0ca6d Fix bulk env var parsing (#482)
  • 1de0a59 fix(manager): remove stale plugins with missing directories (#481)
  • 55d0066 Fix spell correction prompt showing (#483)
  • 9ffd8d4 Flush model writes before sending HTTP requests
  • 18b983b Add CLI import and export commands (#484)
  • 09adcda Add plugin metadata generation (#485)

📊 Changes

94 files changed (+3654 additions, -1251 deletions)

View changed files

📝 Cargo.lock (+11 -9)
📝 apps/yaak-client/components/CloneGitRepositoryDialog.tsx (+3 -0)
apps/yaak-client/components/CommercialUseBanner.tsx (+130 -0)
📝 apps/yaak-client/components/CookieDialog.tsx (+7 -3)
📝 apps/yaak-client/components/ExportDataDialog.tsx (+6 -3)
📝 apps/yaak-client/components/HttpAuthenticationEditor.tsx (+60 -11)
📝 apps/yaak-client/components/ImportDataDialog.tsx (+3 -0)
📝 apps/yaak-client/components/ModelSettingsEditor.tsx (+334 -47)
📝 apps/yaak-client/components/Settings/SettingsCertificates.tsx (+3 -0)
📝 apps/yaak-client/components/Settings/SettingsGeneral.tsx (+31 -62)
📝 apps/yaak-client/components/Settings/SettingsInterface.tsx (+4 -1)
📝 apps/yaak-client/components/Settings/SettingsLicense.tsx (+5 -6)
📝 apps/yaak-client/components/Settings/SettingsProxy.tsx (+2 -0)
📝 apps/yaak-client/components/SettingsDropdown.tsx (+3 -1)
📝 apps/yaak-client/components/WebsocketResponsePane.tsx (+15 -3)
📝 apps/yaak-client/components/WorkspaceSettingsDialog.tsx (+4 -2)
apps/yaak-client/components/core/BulkPairEditor.test.ts (+36 -0)
📝 apps/yaak-client/components/core/BulkPairEditor.tsx (+6 -6)
📝 apps/yaak-client/components/core/DismissibleBanner.tsx (+59 -32)
📝 apps/yaak-client/components/core/Editor/Editor.tsx (+4 -0)

...and 74 more files

📄 Description

Adds a shared inline commercial-use banner for post-trial users and places it in team-oriented workflows.

image

🔄 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/mountain-loop/yaak/pull/478 **Author:** [@gschier](https://github.com/gschier) **Created:** 6/19/2026 **Status:** ✅ Merged **Merged:** 6/30/2026 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `main` ← **Head:** `codex/commercial-use-banners` --- ### 📝 Commits (10+) - [`4092511`](https://github.com/mountain-loop/yaak/commit/4092511f22e378eb3f64638e74a76dc1c381272d) Add commercial use upsell banners - [`98794fa`](https://github.com/mountain-loop/yaak/commit/98794fa03156ac96f569961ea80fff0c4ed872c7) Merge branch 'main' into codex/commercial-use-banners - [`693768f`](https://github.com/mountain-loop/yaak/commit/693768ffc6834d91456bc1dd09b7f797fe11a775) Refine commercial use banner attribution - [`84b89e2`](https://github.com/mountain-loop/yaak/commit/84b89e2708862167f07bfec00ebb7fa3fb8c3d43) update theme generation logic - [`fd0ca6d`](https://github.com/mountain-loop/yaak/commit/fd0ca6d4554e3613a6131113286359db38532593) Fix bulk env var parsing (#482) - [`1de0a59`](https://github.com/mountain-loop/yaak/commit/1de0a5942caaac6677b064872f373da56f068bc4) fix(manager): remove stale plugins with missing directories (#481) - [`55d0066`](https://github.com/mountain-loop/yaak/commit/55d0066efd42e34cb787988fdd15d7d2bf796bc4) Fix spell correction prompt showing (#483) - [`9ffd8d4`](https://github.com/mountain-loop/yaak/commit/9ffd8d481084e553fe64a5cda41abea8606f97b5) Flush model writes before sending HTTP requests - [`18b983b`](https://github.com/mountain-loop/yaak/commit/18b983bfe5ceda3b103afb374b9fd094d6976f74) Add CLI import and export commands (#484) - [`09adcda`](https://github.com/mountain-loop/yaak/commit/09adcda2d97ddfd227202c486f2b00200784f472) Add plugin metadata generation (#485) ### 📊 Changes **94 files changed** (+3654 additions, -1251 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+11 -9) 📝 `apps/yaak-client/components/CloneGitRepositoryDialog.tsx` (+3 -0) ➕ `apps/yaak-client/components/CommercialUseBanner.tsx` (+130 -0) 📝 `apps/yaak-client/components/CookieDialog.tsx` (+7 -3) 📝 `apps/yaak-client/components/ExportDataDialog.tsx` (+6 -3) 📝 `apps/yaak-client/components/HttpAuthenticationEditor.tsx` (+60 -11) 📝 `apps/yaak-client/components/ImportDataDialog.tsx` (+3 -0) 📝 `apps/yaak-client/components/ModelSettingsEditor.tsx` (+334 -47) 📝 `apps/yaak-client/components/Settings/SettingsCertificates.tsx` (+3 -0) 📝 `apps/yaak-client/components/Settings/SettingsGeneral.tsx` (+31 -62) 📝 `apps/yaak-client/components/Settings/SettingsInterface.tsx` (+4 -1) 📝 `apps/yaak-client/components/Settings/SettingsLicense.tsx` (+5 -6) 📝 `apps/yaak-client/components/Settings/SettingsProxy.tsx` (+2 -0) 📝 `apps/yaak-client/components/SettingsDropdown.tsx` (+3 -1) 📝 `apps/yaak-client/components/WebsocketResponsePane.tsx` (+15 -3) 📝 `apps/yaak-client/components/WorkspaceSettingsDialog.tsx` (+4 -2) ➕ `apps/yaak-client/components/core/BulkPairEditor.test.ts` (+36 -0) 📝 `apps/yaak-client/components/core/BulkPairEditor.tsx` (+6 -6) 📝 `apps/yaak-client/components/core/DismissibleBanner.tsx` (+59 -32) 📝 `apps/yaak-client/components/core/Editor/Editor.tsx` (+4 -0) _...and 74 more files_ </details> ### 📄 Description Adds a shared inline commercial-use banner for post-trial users and places it in team-oriented workflows. <img width="1328" height="992" alt="image" src="https://github.com/user-attachments/assets/c5b972b4-d982-4b97-a598-2d4ac5aeb787" /> --- <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-07-15 02:02:14 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/yaak#3327