Merged
Conversation
added 5 commits
April 15, 2026 00:35
- Add apt-get install step for libwebkit2gtk-4.1-dev, libgtk-3-dev, libayatana-appindicator3-dev, librsvg2-dev, patchelf on Linux CI jobs - Fix duplicate __cmd__* macro definitions by using full paths in generate_handler! instead of importing commands with use
- Move #[tauri::command] functions from lib.rs to main.rs to avoid __cmd__* macro collisions between lib and bin targets - Add icon.ico and icon.icns required by tauri-build on Windows/macOS
- Use #[derive(Default)] for AppStatus instead of manual impl - Regenerate all icon PNGs as proper RGBA format (fixes generate_context!() proc macro panic on 'icon is not RGBA')
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
Adds a new
modelrelay-desktopcrate using Tauri v2 to the workspace.Why
First step toward a native desktop/tray app for ModelRelay workers. This scaffolds the project structure, Tauri config, minimal frontend, and placeholder commands.
Contents
crates/modelrelay-desktoptray-iconfeature)get_status,get_settings,save_settingsmodelrelay-workerandmodelrelay-protocolNotes
cargo checkfails on systems without GTK/WebKit system libraries (glib-2.0, webkit2gtk-4.1, etc.) — this is expected for Tauri on Linux. CI may need a separate job with these deps installed.cargo metadataconfirms the crate resolves correctly in the workspacecargo fmt --checkpassesTest plan
cargo metadatashows modelrelay-desktop in workspacecargo fmt --check -p modelrelay-desktoppassescargo check -p modelrelay-protocol -p modelrelay-workerstill passescargo check -p modelrelay-desktoprequires system GTK/WebKit libs