Migrate the desktop app from Tauri to native GPUI - #34
Draft
baronunread wants to merge 46 commits into
Draft
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
React Doctor found no new issues. 🎉 Reviewed by React Doctor for commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
The production desktop app moves from Tauri/React to a native GPUI client.
src-gpui/— new GPUI application (lopload-gpui): file browser, transfer tray, onboarding, image preview, appearance toggle, settings, system tray, and signed update handling.gpui 0.2.2/gpui-component 0.5.1are pinned in the manifest and lockfile.crates/lopload-native/— new Rust core: S3 client, SQLite metadata, OS keychain credential storage, multipart/resumable transfers, file operations (move, trash/restore, share links), and recursive folder uploads with guard checks.2a96b05) in the CI workflows; packaging usescargo-packager(src-gpui/packager.toml).src-gpui/src/updater.rs).build.ymland the newgpui-build.ymlpackage platform-native artifacts on Ubuntu 22.04 (deb, AppImage), macOS 26 (app, dmg), and Windows (nsis, wix, portable binary).ci.ymlrunscinder check/cinder testfor both crates, plus real-MinIO integration tests.legacy:*npm scripts (legacy:dev,legacy:build,legacy:test);dev/build/test/checknow point at the GPUI/native stack. Legacy code no longer ships as the production desktop.Why
Tauri's webview stack meant the desktop app paid for a browser runtime and an IPC boundary on every file operation. Moving to GPUI with a native Rust core removes that layer: S3, SQLite, keychain, and transfers all run in-process, and the shipped artifacts are true platform-native packages.
Impact / risk
feat: migrate existing desktop metadata); existing installs go through a migration path on first launch.legacy:*scripts.Validation
Run locally:
.app,.dmg, and updater.zipNot covered locally: