[PR #227] [MERGED] Install plugins from remote directory #152

Closed
opened 2025-12-29 07:19:34 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/227
Author: @gschier
Created: 6/11/2025
Status: Merged
Merged: 6/22/2025
Merged by: @gschier

Base: masterHead: plugin-directory


📝 Commits (9)

📊 Changes

56 files changed (+1222 additions, -444 deletions)

View changed files

📝 packages/plugin-runtime-types/src/bindings/gen_events.ts (+1 -1)
packages/plugin-runtime-types/src/bindings/gen_search.ts (+5 -0)
📝 packages/plugin-runtime/src/PluginInstance.ts (+15 -7)
📝 src-tauri/Cargo.lock (+274 -18)
📝 src-tauri/Cargo.toml (+14 -10)
📝 src-tauri/capabilities/capabilities.json (+2 -1)
📝 src-tauri/macos/entitlements.plist (+0 -4)
📝 src-tauri/src/history.rs (+0 -12)
src-tauri/src/import.rs (+105 -0)
📝 src-tauri/src/lib.rs (+26 -101)
📝 src-tauri/src/notifications.rs (+2 -1)
📝 src-tauri/src/plugin_events.rs (+2 -2)
📝 src-tauri/src/uri_scheme.rs (+68 -19)
📝 src-tauri/tauri.conf.json (+0 -1)
📝 src-tauri/yaak-common/Cargo.toml (+3 -0)
src-tauri/yaak-common/src/api_client.rs (+23 -0)
src-tauri/yaak-common/src/error.rs (+19 -0)
📝 src-tauri/yaak-common/src/lib.rs (+4 -1)
src-tauri/yaak-common/src/platform.rs (+23 -0)
📝 src-tauri/yaak-crypto/Cargo.toml (+1 -1)

...and 36 more files

📄 Description

🚧


🔄 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/227 **Author:** [@gschier](https://github.com/gschier) **Created:** 6/11/2025 **Status:** ✅ Merged **Merged:** 6/22/2025 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `master` ← **Head:** `plugin-directory` --- ### 📝 Commits (9) - [`89dfa79`](https://github.com/mountain-loop/yaak/commit/89dfa79cea23eb89f97b991b7e249c01c1fb0df3) Search and install plugins PoC - [`c5cf7a7`](https://github.com/mountain-loop/yaak/commit/c5cf7a7eddf68f6f2924acc06eef4f89cca9d1a1) Checksum - [`46234fd`](https://github.com/mountain-loop/yaak/commit/46234fd55ae6ed7508859e5e458350a9cffb3d83) Tab sidebar for settings - [`bd3bbf6`](https://github.com/mountain-loop/yaak/commit/bd3bbf6ceb07bd0d05ec04c722a749107513a775) Fix nested tabs, and tweaks - [`38ab1d8`](https://github.com/mountain-loop/yaak/commit/38ab1d8ef2d58da2b2b80912e0d78b1234bd019d) Table for plugin results - [`2d549ba`](https://github.com/mountain-loop/yaak/commit/2d549bacf0434521d04fb18d3a5bf6e8992ba607) Deep links working - [`2ac8f77`](https://github.com/mountain-loop/yaak/commit/2ac8f774683147974db07e0b37adbf6d8e2c0ec5) Focus window during deep links - [`9751587`](https://github.com/mountain-loop/yaak/commit/9751587f6b08ff2b14cc2f81ea1c3609d1df34a4) Merge branch 'master' into plugin-directory - [`54a6348`](https://github.com/mountain-loop/yaak/commit/54a6348ae9a331ce1e77b78230a5c377aba0ca40) More stuff ### 📊 Changes **56 files changed** (+1222 additions, -444 deletions) <details> <summary>View changed files</summary> 📝 `packages/plugin-runtime-types/src/bindings/gen_events.ts` (+1 -1) ➕ `packages/plugin-runtime-types/src/bindings/gen_search.ts` (+5 -0) 📝 `packages/plugin-runtime/src/PluginInstance.ts` (+15 -7) 📝 `src-tauri/Cargo.lock` (+274 -18) 📝 `src-tauri/Cargo.toml` (+14 -10) 📝 `src-tauri/capabilities/capabilities.json` (+2 -1) 📝 `src-tauri/macos/entitlements.plist` (+0 -4) 📝 `src-tauri/src/history.rs` (+0 -12) ➕ `src-tauri/src/import.rs` (+105 -0) 📝 `src-tauri/src/lib.rs` (+26 -101) 📝 `src-tauri/src/notifications.rs` (+2 -1) 📝 `src-tauri/src/plugin_events.rs` (+2 -2) 📝 `src-tauri/src/uri_scheme.rs` (+68 -19) 📝 `src-tauri/tauri.conf.json` (+0 -1) 📝 `src-tauri/yaak-common/Cargo.toml` (+3 -0) ➕ `src-tauri/yaak-common/src/api_client.rs` (+23 -0) ➕ `src-tauri/yaak-common/src/error.rs` (+19 -0) 📝 `src-tauri/yaak-common/src/lib.rs` (+4 -1) ➕ `src-tauri/yaak-common/src/platform.rs` (+23 -0) 📝 `src-tauri/yaak-crypto/Cargo.toml` (+1 -1) _...and 36 more files_ </details> ### 📄 Description 🚧 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 07:19:34 +01:00
adam closed this issue 2025-12-29 07:19:34 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#152