Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to `@mathnotes/mobile-ink` will be documented here.

## [0.3.2] - 2026-07-15

- Smoothed zoomed drawing and erasing: highlighter and marker render as a single constant-width stroked centerline (no more segment seams at high zoom), the pixel eraser defers stroke bookkeeping to pen-up, and the zoomed stroke preview anchors a constant-memory surface to the viewport instead of allocating canvas-times-zoom pixels.
- Exposed `transformNotificationMinIntervalMs` on `InfiniteInkCanvas` so apps can tune how often JS receives viewport transform notifications (default 16ms).
- Documented continuous canvas positioning.
- Fixed the podspec source tag to match the repository's v-prefixed release tags.

## [0.3.1] - 2026-05-20

- Added crisp settled zoom rendering with scale-aware native drawables and cached stroke tiles.
Expand Down
4 changes: 2 additions & 2 deletions MathNotesMobileInk.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "MathNotesMobileInk"
s.version = "0.3.1"
s.version = "0.3.2"
s.summary = "Native Skia/Metal mobile ink engine for React Native"
s.homepage = "https://github.com/mathnotes-app/mobile-ink"
s.license = { :type => "Apache-2.0", :file => "LICENSE" }
s.authors = { "BuilderPro LLC" => "mark@builderproapps.com" }
s.platforms = { :ios => "15.1" }
s.source = { :git => "https://github.com/mathnotes-app/mobile-ink.git", :tag => "#{s.version}" }
s.source = { :git => "https://github.com/mathnotes-app/mobile-ink.git", :tag => "v#{s.version}" }

s.source_files = "ios/MobileInkModule/**/*.{h,m,mm,swift}", "cpp/**/*.{h,cpp}"
s.private_header_files = "cpp/*.h"
Expand Down
2 changes: 1 addition & 1 deletion example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mathnotes/mobile-ink",
"version": "0.3.1",
"version": "0.3.2",
"description": "Production-grade React Native ink engine with native Skia drawing and continuous canvas primitives.",
"license": "Apache-2.0",
"author": "BuilderPro LLC",
Expand Down
Loading