feat(selection): add conditional triggers for auto show query icon #1084#1085
Merged
feat(selection): add conditional triggers for auto show query icon #1084#1085
Conversation
Add configurable conditions to control when the query icon appears after text selection: - Language-based filtering: only show when selected text language differs from excluded language - Minimum character length requirement: customizable threshold (0-50 characters) to reduce accidental triggers - Settings UI in Advanced tab to configure both conditions The query icon now respects these conditions to provide more precise control over auto-selection behavior.
This commit removes the adjustPopButtonOrigin feature from the app. The following changes were made: - Removed the adjustPopButtonOrigin key from Defaults.Keys+Extension.swift - Removed adjustPopButtomOrigin property from MyConfiguration.swift - Removed the toggle switch from AdvancedTab.swift settings UI - Removed related conditional logic in EZWindowManager.m - Cleaned up localization strings in Localizable.xcstrings
This commit updates the default value for autoShowQueryIconMinTextLength from 20 to 0. The change makes the auto show query icon feature more accessible by allowing it to appear immediately for any text length when enabled, rather than requiring a minimum of 20 characters.
This commit updates SwiftFormat from version 0.58.7 to 0.59.1, bringing the latest code formatting improvements and bug fixes to the project. Changes made: - Update SwiftFormat dependency in Package.swift - Update resolved package version in Package.resolved
This commit applies SwiftFormat 0.59.1 to automatically format Swift code according to project standards. Changes include: - Reorder property declarations for better organization - Add appropriate spacing and blank lines - Improve code structure and readability - Apply consistent formatting patterns across multiple SwiftUI views No functional changes were made, only code formatting improvements.
Jerry23011
requested changes
Feb 3, 2026
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.
Add configurable conditions to control when the query icon appears after text selection:
The query icon now respects these conditions to provide more precise control over auto-selection behavior.

Close #735