Conversation
- GNOME runtime 47 (and 48) are end-of-life; bump to 50, which still provides webkit2gtk-4.1 that Tauri v2 links against. Updated in lockstep: flatpak/ai.canonic.app.yml runtime-version and the runtime install in release.yml. - install.sh: pass --noninteractive to `flatpak install`. Over a curl|sh pipe flatpak's animated progress UI emitted terminal cursor-position queries whose replies weren't consumed and leaked as `^[[..R` noise at the end; it also auto-answers the EOL/migration prompt. Takes effect on the next release build (the bundle embeds the runtime ref). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…uests
"Can't get files" from a discovered peer was shown as a generic "Could not load
files" — the actual reason (connection refused / timeout = firewall or
unreachable host) was discarded. Now the peer files error shows the real message
("Could not reach 192.168.x:port — …"). Added an 8s timeout to the manifest
fetch so a firewall that DROPs the share port fails fast instead of hanging.
The fetch path itself was already correct (host/port/token come from the live
share + mDNS), so cross-machine "can't get files" is reachability, not a code
bug — this makes that obvious in the UI.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Summary
Follow-ups after 0.2.8 testing. Not in any release yet.
Flatpak / installer (Alpine reports)
webkit2gtk-4.1(Tauri v2's dependency). Bumped in lockstep:flatpak/ai.canonic.app.yml+ the runtime install inrelease.yml. Takes effect on the next release build (the bundle embeds the runtime ref).flatpak install --noninteractive. Over acurl | shpipe, flatpak's animated progress UI emitted terminal cursor-position queries whose replies weren't consumed and leaked as^[[..Rnoise at the end;--noninteractivedisables that UI and auto-answers the EOL prompt.Peer "can't get files"
The fetch path is correct (host/port/token come from the live share + mDNS), so cross-machine "can't get files" is reachability (firewall / unreachable host), not a code bug. But the UI hid the reason behind a generic "Could not load files":
Could not reach 192.168.x:port — connection refused) in the peer-files area.All 311 tests pass;
cargo checkclean; version synced to 0.2.8.🤖 Generated with Claude Code