feat: v0.1.54 — Gesture Recognition System (ADR-049) - #226
Merged
Conversation
…tion Arena-based gesture disambiguation (Flutter pattern, source-verified). Unified pointer pipeline: PointerEvent as single source of truth. 22 gesture/ files: Arena, Click, Drag, LongPress, TapAndDrag recognizers, VelocityTracker, Team cooperative groups, per-device thresholds, signals. All 20 interactive widgets implement GestureAware. TextField: drag selection, double-click word, triple-click select-all (#225). OS clipboard: widget.ClipboardProvider DI, platform wiring via gogpu. Event bridge: scroll bounds filtering, non-mouse pointer isolation. 57 files, 120+ gesture tests, 95.5% gesture coverage, 0 lint issues.
CHANGELOG: v0.1.54 section with gesture system, unified pipeline, clipboard. ARCHITECTURE: gesture/ package, arena protocol, event pipeline diagram. README: gesture recognition in features, updated metrics (220K LOC, 70 packages). ROADMAP: gesture system completed, updated phase status. CONTRIBUTING: GestureAware requirement for new widgets.
…28.0, wgpu v0.31.4
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
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
gesture/package with Arena, 5 recognizers, VelocityTracker, Team cooperative groups. 124 tests, 96% coverage, ~5K LOC.widget.ClipboardProviderDI, wired to platform clipboard (Win32, macOS, Linux).gesture.GestureAware.Test plan
go build ./...go test ./... -count=1(0 failures)golangci-lint run --timeout=5m(0 issues)