diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c55931..86cc0a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# [0.3.0](https://github.com/robertrosman/vue-paint/compare/v0.2.3...v0.3.0) (2024-05-30) + + +### Bug Fixes + +* add handles to crop ([6f1faf2](https://github.com/robertrosman/vue-paint/commit/6f1faf2ebd732972398ec19b6f10cf6bdb25981c)) +* don't push eraser or move event if targets are empty ([a62be7f](https://github.com/robertrosman/vue-paint/commit/a62be7fd6d7bee390d39dd1dd45e3a23f9cb01a7)) +* export eraser and move ([2675c60](https://github.com/robertrosman/vue-paint/commit/2675c6093231451ca50a07511b163c2c31529674)) +* only show handles when move tool is active ([6429fa3](https://github.com/robertrosman/vue-paint/commit/6429fa3ae7830b57e4be41fd8536c3da85c0c264)) +* replace onMove in Freehand with handle ([b1df551](https://github.com/robertrosman/vue-paint/commit/b1df551caf022ce226868ce2ff66d2d4306e93d5)) +* sort toolSvgs by layer ([1b7d5b2](https://github.com/robertrosman/vue-paint/commit/1b7d5b2c902751a13406ddbfe7947d28664b29b0)) + + +### Features + +* add a unique id to every shape ([d839370](https://github.com/robertrosman/vue-paint/commit/d8393702104832911005c972a5af136312a8b1c0)) +* add eraser tool ([61f4baf](https://github.com/robertrosman/vue-paint/commit/61f4baf4108f446c3d78f6a3d5b572caf5380399)) +* add handles to activeShape ([5a459cd](https://github.com/robertrosman/vue-paint/commit/5a459cd514054d84ce9dc0a90a7830199303ba14)) +* add handles to the move tool ([0e0d57f](https://github.com/robertrosman/vue-paint/commit/0e0d57f497ce52a38fb696f4f8680e7d3f9070ad)) +* add includeActiveShape option to useSimplifiedHistory ([59348a7](https://github.com/robertrosman/vue-paint/commit/59348a7513fd9849d8168c846bb5013cbc6d5a69)) +* add move tool ([5b7392d](https://github.com/robertrosman/vue-paint/commit/5b7392d79aa1de2ffb8c1e8dff3e4a26e79ab621)) + + + ## [0.2.3](https://github.com/robertrosman/vue-paint/compare/v0.2.2...v0.2.3) (2024-05-27) @@ -35,13 +59,3 @@ -## [0.1.1](https://github.com/robertrosman/vue-paint/compare/v0.1.0...v0.1.1) (2024-05-24) - - -### Bug Fixes - -* make headers semantically correct ([42e6b8a](https://github.com/robertrosman/vue-paint/commit/42e6b8ae2754d668a5cf54a498f46e2a6ad6a923)) -* replace vue-draw class to vue-paint ([904634b](https://github.com/robertrosman/vue-paint/commit/904634bf6dbf1705ad526e98639b6218a13a2dc0)) - - - diff --git a/package-lock.json b/package-lock.json index 7f1c38f..6437efa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vue-paint", - "version": "0.2.3", + "version": "0.3.0", "lockfileVersion": 3, "requires": true, "packages": { @@ -5434,4 +5434,4 @@ } } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index dff129d..34f48f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-paint", - "version": "0.2.3", + "version": "0.3.0", "private": false, "type": "module", "author": "Robert Rosman",