Skip to content
Open
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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 0.10.1

- **REFACTOR**: changed `SketchSimplifier` methods to better match data structure.
- **FIX**: eraser doesn't affect undo history if it didn't actually erase anything (#80).
- **FIX**: disable setting pressure to default value on web (#72).
- **FIX**: remove emoji from pubspec.
- **FIX**: updated meta dependency constraints.
- **FEAT**(example): added pressure simulation toggle.
- **FEAT**: added parameter for pressure simulation to widgets.
- **FEAT**(example): made UI a little bit prettier.
- **FEAT**: simplify sketches in `setSketch` if the `simplificationTolerance` is not 0.
- **FEAT**: simplify sketch on load if simplificationTolerance is not 0.
- **FEAT**: added ability to simplify entire sketches.
- **FEAT**: implemented simplification.
- **FEAT**: added simpli package (#50).
- **DOCS**: simplification comment mentions how pressure simulation is affected.
- **DOCS**: fix readme.
- **DOCS**: updated recommended starting point.

## 0.10.0+1

- **DOCS**: fixed demo image.
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
sdk: flutter
scribble:
path: ..
value_notifier_tools: ^0.1.2
value_notifier_tools: ^0.1.3

dev_dependencies:
flutter_test:
Expand Down
4 changes: 4 additions & 0 deletions packages/value_notifier_tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.3

- **FEAT**: implemented simplification.

## 0.1.2

- **FIX**(value_notifier_tools): fixed type parameters in select extension.
Expand Down
2 changes: 1 addition & 1 deletion packages/value_notifier_tools/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: value_notifier_tools
description: Helpful lightweight tools for working with ValueNotifiers
version: 0.1.2
version: 0.1.3
repository: https://github.com/timcreatedit/scribble/tree/main/packages/value_notifier_tools
homepage: https://whynotmake.it

Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: scribble
description: Scribble is a lightweight library for freehand drawing in Flutter
supporting pressure, variable line width and more!
version: 0.10.0+1
version: 0.10.1
repository: https://github.com/timcreatedit/scribble
issue_tracker: https://github.com/timcreatedit/scribble/issues

Expand All @@ -15,7 +15,7 @@ dependencies:
freezed_annotation: ">=2.4.1 <3.0.0"
perfect_freehand: ^2.3.2
simpli: ^0.1.1
value_notifier_tools: ^0.1.2
value_notifier_tools: ^0.1.3

dev_dependencies:
build_runner: ^2.4.9
Expand Down