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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [0.2.0] - 2026-05-12

- Defaulted the iOS renderer to the Ganesh/Metal path while keeping CPU selectable for A/B comparison and fallback.
- Added on-device benchmark tooling for replayed strokes, manual notebook recordings, scroll sampling, multi-page suites, eraser, selection, and tool coverage.
- Matched Ganesh output colors to the CPU path for highlighter, selection chrome, and other tool colors.

## [0.1.0] - 2026-05-07

Initial public release.
Expand Down
2 changes: 1 addition & 1 deletion MathNotesMobileInk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MathNotesMobileInk"
s.version = "0.1.0"
s.version = "0.2.0"
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" }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Production-grade React Native ink primitives extracted from the MathNotes canvas
<a href="https://www.npmjs.com/package/@mathnotes/mobile-ink"><img src="https://img.shields.io/npm/v/@mathnotes/mobile-ink.svg" alt="npm version" /></a>
<a href="https://www.npmjs.com/package/@mathnotes/mobile-ink"><img src="https://img.shields.io/npm/dm/@mathnotes/mobile-ink.svg" alt="npm downloads" /></a>
<a href="https://github.com/mathnotes-app/mobile-ink/actions/workflows/ci.yml"><img src="https://github.com/mathnotes-app/mobile-ink/actions/workflows/ci.yml/badge.svg" alt="CI status" /></a>
<a href="https://github.com/mathnotes-app/mobile-ink/releases/tag/v0.1.0"><img src="https://img.shields.io/github/v/release/mathnotes-app/mobile-ink" alt="GitHub release" /></a>
<a href="https://github.com/mobile-ink/mobile-ink/releases/tag/v0.2.0"><img src="https://img.shields.io/github/v/release/mobile-ink/mobile-ink" alt="GitHub release" /></a>
<a href="https://github.com/mathnotes-app/mobile-ink/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@mathnotes/mobile-ink.svg" alt="license" /></a>
</p>

Expand Down
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.1.0",
"version": "0.2.0",
"description": "Production-grade React Native ink engine with native Skia/Metal drawing and continuous canvas primitives.",
"license": "Apache-2.0",
"author": "BuilderPro LLC",
Expand Down
Loading