Skip to content

Commit f9fb91a

Browse files
committed
Release 3.1.0
Closes #94
1 parent 79675a9 commit f9fb91a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ settings and a fixed seed to account for the randomness in the sketched output.
144144
## Credits
145145

146146
- [Rough.js](https://github.com/pshihn/rough) – Draws the hand-drawn elements
147-
- [seedrandom](https://github.com/davidbau/seedrandom) - A seedable RNG
148147
- [svg-pathdata](https://github.com/nfroidure/svg-pathdata) – Parses SVGPathElements
149148
- [TinyColor](https://github.com/bgrins/TinyColor) – Color manipulation
150149

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svg2roughjs",
3-
"version": "3.0.2",
3+
"version": "3.1.0",
44
"description": "Leverages Rough.js to convert SVGs to a hand-drawn, sketchy representation",
55
"author": "Fabian Schwarzkopf",
66
"contributors": [

src/Svg2Roughjs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ export class Svg2Roughjs {
2828
* Whether to randomize Rough.js' fillWeight, hachureAngle and hachureGap.
2929
* Also randomizes the disableMultiStroke option of Rough.js.
3030
* The randomness may be seeded with the `seed` property.
31-
* By default true.
31+
* By default `true`.
3232
*/
3333
randomize: boolean = true
3434

3535
/**
3636
* Optional seed for the randomness when creating the sketch.
3737
* Providing a value implicitly seeds Rough.js which may be overwritten
3838
* by provding a different seed with the optional `roughConfig` property.
39-
* By default null.
39+
* By default `null`.
4040
*/
4141
seed: number | null = null
4242

0 commit comments

Comments
 (0)