[PR #3014] [CLOSED] fix: windows deeplink #5523

Closed
opened 2026-03-23 22:19:07 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3014
Author: @LucasXu0
Created: 7/17/2023
Status: Closed

Base: mainHead: fix_windows_deeplink


📝 Commits (4)

  • 3431ca1 fix: windows deeplink
  • cbb80ce fix: move SendAppLinkToInstance in Win32Window
  • db89202 fix: windows registry does not like ://
  • 6685dc6 feat: use different package to handle deep links

📊 Changes

7 files changed (+248 additions, -119 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/startup/startup.dart (+3 -0)
frontend/appflowy_flutter/lib/startup/tasks/windows_deeplink.dart (+25 -0)
📝 frontend/appflowy_flutter/pubspec.lock (+10 -1)
📝 frontend/appflowy_flutter/pubspec.yaml (+6 -0)
📝 frontend/appflowy_flutter/windows/runner/main.cpp (+13 -17)
📝 frontend/appflowy_flutter/windows/runner/win32_window.cpp (+171 -90)
📝 frontend/appflowy_flutter/windows/runner/win32_window.h (+20 -11)

📄 Description

Feature Preview

The Supabase deep link didn't respond on Windows.


PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/AppFlowy-IO/AppFlowy/pull/3014 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 7/17/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix_windows_deeplink` --- ### 📝 Commits (4) - [`3431ca1`](https://github.com/AppFlowy-IO/AppFlowy/commit/3431ca148ed5c8cf1665f463a16d93c69862d508) fix: windows deeplink - [`cbb80ce`](https://github.com/AppFlowy-IO/AppFlowy/commit/cbb80ce59672896e3c242915605744039ec2a96f) fix: move SendAppLinkToInstance in Win32Window - [`db89202`](https://github.com/AppFlowy-IO/AppFlowy/commit/db89202938a0eece0454ee25a2950c41bfc7ba7c) fix: windows registry does not like ://<path> - [`6685dc6`](https://github.com/AppFlowy-IO/AppFlowy/commit/6685dc6968e33f5c4c52826adc6fede8a74b80e0) feat: use different package to handle deep links ### 📊 Changes **7 files changed** (+248 additions, -119 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/startup/startup.dart` (+3 -0) ➕ `frontend/appflowy_flutter/lib/startup/tasks/windows_deeplink.dart` (+25 -0) 📝 `frontend/appflowy_flutter/pubspec.lock` (+10 -1) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+6 -0) 📝 `frontend/appflowy_flutter/windows/runner/main.cpp` (+13 -17) 📝 `frontend/appflowy_flutter/windows/runner/win32_window.cpp` (+171 -90) 📝 `frontend/appflowy_flutter/windows/runner/win32_window.h` (+20 -11) </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview The Supabase deep link didn't respond on Windows. <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [x] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:19:07 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#5523
No description provided.