[PR #601] Supports local debugging on Windows systems #606

Open
opened 2026-02-16 01:16:30 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-plugin-daemon/pull/601
Author: @shootercheng
Created: 2/6/2026
Status: 🔄 Open

Base: mainHead: main


📝 Commits (5)

📊 Changes

15 files changed (+193 additions, -17 deletions)

View changed files

📝 .env.example (+6 -0)
📝 go.mod (+1 -1)
📝 internal/core/local_runtime/setup_python_environment.go (+21 -3)
📝 internal/core/plugin_manager/media_transport/installed_bucket.go (+8 -1)
internal/core/plugin_manager/media_transport/installed_bucket_test.go (+39 -0)
internal/core/plugin_manager/media_transport/testdata/plugin/langgenius/github#0.3.2@1cb2f90ea05bbc7987fd712aff0a07594073816269125603dc2fa5b4229eb122 (+0 -0)
📝 internal/types/app/config.go (+1 -0)
📝 pkg/entities/plugin_entities/identity.go (+5 -4)
📝 pkg/entities/plugin_entities/identity_test.go (+6 -4)
pkg/plugin_packager/decoder/testdata/github#0.3.2@1cb2f90ea05bbc7987fd712aff0a07594073816269125603dc2fa5b4229eb122 (+0 -0)
📝 pkg/plugin_packager/decoder/zip.go (+2 -1)
pkg/plugin_packager/decoder/zip_test.go (+33 -0)
📝 pkg/utils/parser/identity.go (+7 -3)
pkg/utils/system/system.go (+39 -0)
pkg/utils/system/system_test.go (+25 -0)

📄 Description

Description

Supports local debugging on Windows systems

Type of Change

  • Bug fix
  • [ ✔] New feature
  • Refactor
  • Performance improvement
  • Other

Essential Checklist

Testing

  • [✔ ] I have tested the changes locally and confirmed they work as expected
  • [✔ ] I have added unit tests where necessary and they pass successfully

Bug Fix (if applicable)

  • I have used GitHub syntax to close the related issue (e.g., Fixes #123 or Closes #123)

Additional Information

Please provide any additional context that would help reviewers understand the changes.


🔄 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/langgenius/dify-plugin-daemon/pull/601 **Author:** [@shootercheng](https://github.com/shootercheng) **Created:** 2/6/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (5) - [`90beb89`](https://github.com/langgenius/dify-plugin-daemon/commit/90beb8941b5d83fcb776e4bd49459699d7b499f2) fix: windows run - [`b1fabec`](https://github.com/langgenius/dify-plugin-daemon/commit/b1fabec7780673d5b2c8f262ec648adf24d7a44e) fix : windows run - [`b1d3542`](https://github.com/langgenius/dify-plugin-daemon/commit/b1d354202819dbe97d5a313dca5057cd4ffc53f5) fix : windows run - [`ec48b69`](https://github.com/langgenius/dify-plugin-daemon/commit/ec48b692bccb57fb7eabb11e3ecd0c1e34fac00f) fix : windows run [add test] - [`47b2b30`](https://github.com/langgenius/dify-plugin-daemon/commit/47b2b3011a5c8e8162b247542e4230f07071f57d) fix : windows run [add test] ### 📊 Changes **15 files changed** (+193 additions, -17 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+6 -0) 📝 `go.mod` (+1 -1) 📝 `internal/core/local_runtime/setup_python_environment.go` (+21 -3) 📝 `internal/core/plugin_manager/media_transport/installed_bucket.go` (+8 -1) ➕ `internal/core/plugin_manager/media_transport/installed_bucket_test.go` (+39 -0) ➕ `internal/core/plugin_manager/media_transport/testdata/plugin/langgenius/github#0.3.2@1cb2f90ea05bbc7987fd712aff0a07594073816269125603dc2fa5b4229eb122` (+0 -0) 📝 `internal/types/app/config.go` (+1 -0) 📝 `pkg/entities/plugin_entities/identity.go` (+5 -4) 📝 `pkg/entities/plugin_entities/identity_test.go` (+6 -4) ➕ `pkg/plugin_packager/decoder/testdata/github#0.3.2@1cb2f90ea05bbc7987fd712aff0a07594073816269125603dc2fa5b4229eb122` (+0 -0) 📝 `pkg/plugin_packager/decoder/zip.go` (+2 -1) ➕ `pkg/plugin_packager/decoder/zip_test.go` (+33 -0) 📝 `pkg/utils/parser/identity.go` (+7 -3) ➕ `pkg/utils/system/system.go` (+39 -0) ➕ `pkg/utils/system/system_test.go` (+25 -0) </details> ### 📄 Description ## Description Supports local debugging on Windows systems ## Type of Change - [ ] Bug fix - [ ✔] New feature - [ ] Refactor - [ ] Performance improvement - [ ] Other ## Essential Checklist ### Testing - [✔ ] I have tested the changes locally and confirmed they work as expected - [✔ ] I have added unit tests where necessary and they pass successfully ### Bug Fix (if applicable) - [ ] I have used GitHub syntax to close the related issue (e.g., `Fixes #123` or `Closes #123`) ## Additional Information Please provide any additional context that would help reviewers understand the changes. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 01:16:30 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-plugin-daemon#606