[PR #68] [MERGED] Dynamic plugins #32

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

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/68
Author: @gschier
Created: 8/30/2024
Status: Merged
Merged: 9/6/2024
Merged by: @gschier

Base: masterHead: dynamic-plugins


📝 Commits (10+)

  • fd98e57 Create plugin model
  • 4d57912 Merge branch 'master' into dynamic-plugins
  • 8bae40d Merge branch 'master' into dynamic-plugins
  • e40822b Create plugin
  • adbee75 Merge branch 'master' into dynamic-plugins
  • 7a8e889 Checkpoint
  • 3ba7b9e Merge branch 'master' into dynamic-plugins
  • 56eb085 Ability to add plugins
  • 08130f5 Merge branch 'master' into dynamic-plugins
  • 0be44eb Merge branch 'master' into dynamic-plugins

📊 Changes

37 files changed (+533 additions, -184 deletions)

View changed files

📝 .github/workflows/release.yml (+1 -5)
📝 package-lock.json (+48 -48)
📝 package.json (+2 -2)
📝 plugin-runtime-types/package.json (+1 -1)
📝 plugin-runtime-types/src/gen/GrpcEvent.ts (+1 -1)
📝 plugin-runtime-types/src/gen/InternalEventPayload.ts (+3 -3)
📝 plugin-runtime-types/src/gen/Model.ts (+2 -1)
plugin-runtime-types/src/gen/Plugin.ts (+3 -0)
📝 plugin-runtime-types/src/gen/PluginBootRequest.ts (+1 -1)
📝 plugin-runtime-types/src/gen/PluginBootResponse.ts (+1 -1)
📝 plugin-runtime-types/src/index.ts (+1 -2)
📝 plugin-runtime-types/src/plugins/index.ts (+1 -1)
src-tauri/migrations/20240829131004_plugins.sql (+12 -0)
📝 src-tauri/src/analytics.rs (+1 -0)
📝 src-tauri/src/lib.rs (+56 -20)
📝 src-tauri/yaak_models/src/models.rs (+49 -0)
📝 src-tauri/yaak_models/src/queries.rs (+84 -7)
📝 src-tauri/yaak_plugin_runtime/src/events.rs (+6 -8)
📝 src-tauri/yaak_plugin_runtime/src/manager.rs (+9 -3)
📝 src-tauri/yaak_plugin_runtime/src/plugin.rs (+14 -5)

...and 17 more files

📄 Description

No description provided


🔄 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/68 **Author:** [@gschier](https://github.com/gschier) **Created:** 8/30/2024 **Status:** ✅ Merged **Merged:** 9/6/2024 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `master` ← **Head:** `dynamic-plugins` --- ### 📝 Commits (10+) - [`fd98e57`](https://github.com/mountain-loop/yaak/commit/fd98e5773ad0cc94ed01e9e3b94e977969cf2693) Create plugin model - [`4d57912`](https://github.com/mountain-loop/yaak/commit/4d579122bb78b7deb555fed08f6bc6c83e364971) Merge branch 'master' into dynamic-plugins - [`8bae40d`](https://github.com/mountain-loop/yaak/commit/8bae40d0dd9dad838fe4f8d158b29f93d36f7ea3) Merge branch 'master' into dynamic-plugins - [`e40822b`](https://github.com/mountain-loop/yaak/commit/e40822b3f9ab390cffb0a1e57ae86d703ed90b0c) Create plugin - [`adbee75`](https://github.com/mountain-loop/yaak/commit/adbee75b713058021194cd1aa1b4d20be304296d) Merge branch 'master' into dynamic-plugins - [`7a8e889`](https://github.com/mountain-loop/yaak/commit/7a8e889ec0fc72169ad33c36718be8e93a41e94e) Checkpoint - [`3ba7b9e`](https://github.com/mountain-loop/yaak/commit/3ba7b9e40d7f1cdc33b9d6f8ceb5e97bdd79c335) Merge branch 'master' into dynamic-plugins - [`56eb085`](https://github.com/mountain-loop/yaak/commit/56eb085be3972c0fdc0374a49c5e91092638a353) Ability to add plugins - [`08130f5`](https://github.com/mountain-loop/yaak/commit/08130f522e47ee927a6f5163ec4bd408f8d35022) Merge branch 'master' into dynamic-plugins - [`0be44eb`](https://github.com/mountain-loop/yaak/commit/0be44eb5a76d74ff645f7b7e7df3b56c51ec28a5) Merge branch 'master' into dynamic-plugins ### 📊 Changes **37 files changed** (+533 additions, -184 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+1 -5) 📝 `package-lock.json` (+48 -48) 📝 `package.json` (+2 -2) 📝 `plugin-runtime-types/package.json` (+1 -1) 📝 `plugin-runtime-types/src/gen/GrpcEvent.ts` (+1 -1) 📝 `plugin-runtime-types/src/gen/InternalEventPayload.ts` (+3 -3) 📝 `plugin-runtime-types/src/gen/Model.ts` (+2 -1) ➕ `plugin-runtime-types/src/gen/Plugin.ts` (+3 -0) 📝 `plugin-runtime-types/src/gen/PluginBootRequest.ts` (+1 -1) 📝 `plugin-runtime-types/src/gen/PluginBootResponse.ts` (+1 -1) 📝 `plugin-runtime-types/src/index.ts` (+1 -2) 📝 `plugin-runtime-types/src/plugins/index.ts` (+1 -1) ➕ `src-tauri/migrations/20240829131004_plugins.sql` (+12 -0) 📝 `src-tauri/src/analytics.rs` (+1 -0) 📝 `src-tauri/src/lib.rs` (+56 -20) 📝 `src-tauri/yaak_models/src/models.rs` (+49 -0) 📝 `src-tauri/yaak_models/src/queries.rs` (+84 -7) 📝 `src-tauri/yaak_plugin_runtime/src/events.rs` (+6 -8) 📝 `src-tauri/yaak_plugin_runtime/src/manager.rs` (+9 -3) 📝 `src-tauri/yaak_plugin_runtime/src/plugin.rs` (+14 -5) _...and 17 more files_ </details> ### 📄 Description _No description provided_ --- <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:18:59 +01:00
adam closed this issue 2025-12-29 07:18:59 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#32