Fix properties symlink, Caps Lock Ctrl, and shared URI routing#5
Merged
Conversation
0690be4 to
7484ca0
Compare
…d in FileReceiverActivity Previously, ContentResolver.query() was called on the main thread while openInputStream() was already offloaded to a background thread. This left a potential ANR risk when the content provider is slow. Now both query() and openInputStream() run in the same background thread.
…ession list modification When TermuxService modifies the session list on a background thread (e.g., when a session exits), the ArrayAdapter backing the sessions ListView could see inconsistent data during layout, causing IllegalStateException. Fix: use postAtFrontOfQueue instead of runOnUiThread for notifyDataSetChanged, ensuring the adapter notification is processed before any pending layout passes.
…l chars in path The Patterns.WEB_URL pattern in Robolectric/API 28 may not match URLs with '=' in the path segment. Use a simpler URL that is guaranteed to match.
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
Small batch from
workbench-app-issue-factorycovering app-owned fixes only.Fixes
termux.propertiesto be a symlink by following symlinks when loading shared properties.termux-url-openerinstead of treating them as editable files.Notes
termux:scheme support.Validation
master...workbench-app-issue-factory: branch is ahead by 4 commits and behind by 0.