Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
159166e
Initial plan
Copilot Feb 5, 2026
0d450e9
Add SKSignaturePadView control with pressure-sensitive ink rendering
Copilot Feb 5, 2026
bf4cfc6
Fix division by zero and add documentation for signature pad
Copilot Feb 5, 2026
2f908af
Fix memory leaks, add multi-touch rejection, support SKGLView
Copilot Feb 5, 2026
426aa18
Extract inking engine to separate SkiaSharp.Extended.Inking package
Copilot Feb 17, 2026
6886420
Add inking projects to solution file
Copilot Feb 17, 2026
fee8370
Add inking documentation, demo page, and recording/playback feature
Copilot Feb 18, 2026
6f3f348
Fix timing issues in ink playback
Copilot Feb 18, 2026
0477562
Add comprehensive tests, fix bugs, achieve 94.67% coverage
Copilot Feb 18, 2026
b0ee908
Add animated GIF showing SkiaSharp signature being written
Copilot Feb 18, 2026
bf73953
Replace text outline GIF with clean swirl pattern
Copilot Feb 18, 2026
fecb21c
Add per-stroke colors, cap styles, smoothing control, and fix animati…
Copilot Feb 18, 2026
b188167
Add customization UI to demo app inking page
Copilot Feb 18, 2026
c0b4ca1
Improve inking implementation: better smoothing for short strokes, fi…
Copilot Feb 18, 2026
debd2a3
Add Catmull-Rom spline algorithm for better handwriting smoothing
Copilot Feb 19, 2026
22acf6a
Fix SmoothingAlgorithm setter to invalidate cached path
Copilot Feb 19, 2026
8bd1992
Add comprehensive Windows.UI.Input.Inking API comparison document
Copilot Feb 19, 2026
0325e5e
Add SKInkStrokeBrush, tilt support, microsecond timestamps, and selec…
Copilot Feb 19, 2026
5166293
Changes before error encountered
Copilot Feb 19, 2026
0c83008
Add velocity-based stroke width like Windows Ink (ballpoint pen/penci…
Copilot Feb 20, 2026
458c407
Merge inking into SkiaSharp.Extended, update comparison docs
Copilot Feb 20, 2026
8cb68eb
Fix InkingPage build error: access CapStyle and SmoothingFactor via B…
Copilot Feb 20, 2026
79cd490
Improve inking quality: TaperLength, point interpolation, smoothing, …
Copilot Feb 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions SkiaSharp.Extended.sln
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SkiaSharpDemo", "samples\Sk
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SkiaSharp.Extended.UI.Maui.Tests", "tests\SkiaSharp.Extended.UI.Maui.Tests\SkiaSharp.Extended.UI.Maui.Tests.csproj", "{4B4EC78C-33B5-456D-BD7D-4358D16272F4}"
EndProject
EndProject
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
Loading