mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-11 20:00:29 +01:00
[PR #96] [MERGED] Refactor plugin manager and gRPC server #43
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/mountain-loop/yaak/pull/96
Author: @gschier
Created: 9/19/2024
Status: ✅ Merged
Merged: 9/19/2024
Merged by: @gschier
Base:
master← Head:plugin-deletion📝 Commits (8)
43df712Hook up delete buttonc2a494bRefactor plugin manager/server4e8d925Better plugin booting1e81c1bProper plugin terminationbc57d55Fix termination00a5346Some small tweaksabc809aChange away from reload0c6e636Oops, fix📊 Changes
27 files changed (+657 additions, -610 deletions)
View changed files
📝
package-lock.json(+4 -4)📝
package.json(+1 -1)📝
plugin-runtime-types/package.json(+1 -1)📝
plugin-runtime-types/src/gen/InternalEventPayload.ts(+25 -53)📝
plugin-runtime/src/PluginHandle.ts(+4 -0)📝
plugin-runtime/src/index.ts(+7 -1)📝
plugin-runtime/src/index.worker.ts(+8 -0)📝
src-tauri/src/lib.rs(+94 -50)📝
src-tauri/src/template_callback.rs(+2 -2)📝
src-tauri/src/updates.rs(+1 -1)📝
src-tauri/yaak_models/src/queries.rs(+15 -0)📝
src-tauri/yaak_plugin_runtime/src/error.rs(+19 -6)📝
src-tauri/yaak_plugin_runtime/src/events.rs(+3 -0)📝
src-tauri/yaak_plugin_runtime/src/lib.rs(+1 -1)📝
src-tauri/yaak_plugin_runtime/src/manager.rs(+358 -45)📝
src-tauri/yaak_plugin_runtime/src/nodejs.rs(+1 -1)📝
src-tauri/yaak_plugin_runtime/src/plugin.rs(+5 -118)📝
src-tauri/yaak_plugin_runtime/src/plugin_handle.rs(+25 -14)📝
src-tauri/yaak_plugin_runtime/src/server.rs(+41 -290)📝
src-web/components/Settings/SettingsPlugins.tsx(+6 -10)...and 7 more files
📄 Description
Refactor plugin manager and gRPC server to allow for dynamically adding and removing plugins. This also implements uninstall for plugins.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.