@thi.ng/rasterize 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -6
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-11-23T22:46:54Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -42,16 +42,16 @@ and/or version bumps of transitive dependencies.
|
|
|
42
42
|
|
|
43
43
|
#### 🚀 Features
|
|
44
44
|
|
|
45
|
-
- major update/additions ([e6f7fb0](https://github.com/thi-ng/umbrella/commit/e6f7fb0))
|
|
46
|
-
- add new shapes (polyline, polygon)
|
|
47
|
-
- add "shader" function support for all draw fns
|
|
48
|
-
- add shader functions
|
|
49
|
-
- rename drawLineWith() => traceLine()
|
|
50
45
|
- update to new IGrid2D impls ([71ac0ca](https://github.com/thi-ng/umbrella/commit/71ac0ca))
|
|
51
46
|
- add floodFillWith() for custom fill content/procedures
|
|
52
47
|
- update/fix rect()
|
|
53
48
|
- optimize __draw2D() for primitive values
|
|
54
49
|
- add/update deps
|
|
50
|
+
- major update/additions ([e6f7fb0](https://github.com/thi-ng/umbrella/commit/e6f7fb0))
|
|
51
|
+
- add new shapes (polyline, polygon)
|
|
52
|
+
- add "shader" function support for all draw fns
|
|
53
|
+
- add shader functions
|
|
54
|
+
- rename drawLineWith() => traceLine()
|
|
55
55
|
|
|
56
56
|
## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rasterize@0.1.0) (2021-11-03)
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rasterize",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "2D shape drawing & rasterization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
38
|
-
"@thi.ng/checks": "^3.3.
|
|
39
|
-
"@thi.ng/equiv": "^2.1.
|
|
40
|
-
"@thi.ng/grid-iterators": "^2.3.
|
|
41
|
-
"@thi.ng/porter-duff": "^2.1.
|
|
42
|
-
"@thi.ng/random": "^3.3.
|
|
43
|
-
"@thi.ng/transducers": "^8.3.
|
|
37
|
+
"@thi.ng/api": "^8.4.6",
|
|
38
|
+
"@thi.ng/checks": "^3.3.3",
|
|
39
|
+
"@thi.ng/equiv": "^2.1.13",
|
|
40
|
+
"@thi.ng/grid-iterators": "^2.3.22",
|
|
41
|
+
"@thi.ng/porter-duff": "^2.1.17",
|
|
42
|
+
"@thi.ng/random": "^3.3.15",
|
|
43
|
+
"@thi.ng/transducers": "^8.3.23"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@microsoft/api-extractor": "^7.33.5",
|
|
47
|
-
"@thi.ng/testament": "^0.3.
|
|
47
|
+
"@thi.ng/testament": "^0.3.5",
|
|
48
48
|
"rimraf": "^3.0.2",
|
|
49
49
|
"tools": "^0.0.1",
|
|
50
|
-
"typedoc": "^0.23.
|
|
50
|
+
"typedoc": "^0.23.20",
|
|
51
51
|
"typescript": "^4.8.4"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"node": ">=14"
|
|
76
76
|
},
|
|
77
77
|
"files": [
|
|
78
|
-
"
|
|
79
|
-
"
|
|
78
|
+
"./*.js",
|
|
79
|
+
"./*.d.ts"
|
|
80
80
|
],
|
|
81
81
|
"exports": {
|
|
82
82
|
".": {
|
|
@@ -119,5 +119,5 @@
|
|
|
119
119
|
"status": "alpha",
|
|
120
120
|
"year": 2021
|
|
121
121
|
},
|
|
122
|
-
"gitHead": "
|
|
122
|
+
"gitHead": "044ee6a3895720fc78e115032d4d831b63510929\n"
|
|
123
123
|
}
|