node-red-contrib-tak-registration 0.11.5 → 0.11.6
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/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/buffer.d.ts +8 -7
- package/node_modules/@types/node/crypto.d.ts +38 -7
- package/node_modules/@types/node/dgram.d.ts +10 -0
- package/node_modules/@types/node/diagnostics_channel.d.ts +355 -1
- package/node_modules/@types/node/fs.d.ts +28 -8
- package/node_modules/@types/node/globals.d.ts +26 -0
- package/node_modules/@types/node/http.d.ts +6 -7
- package/node_modules/@types/node/module.d.ts +14 -0
- package/node_modules/@types/node/net.d.ts +8 -3
- package/node_modules/@types/node/package.json +3 -4
- package/node_modules/@types/node/perf_hooks.d.ts +12 -6
- package/node_modules/@types/node/process.d.ts +25 -3
- package/node_modules/@types/node/querystring.d.ts +3 -3
- package/node_modules/@types/node/stream/web.d.ts +17 -1
- package/node_modules/@types/node/string_decoder.d.ts +2 -2
- package/node_modules/@types/node/test.d.ts +98 -15
- package/node_modules/@types/node/tls.d.ts +1 -1
- package/node_modules/@types/node/ts4.8/buffer.d.ts +8 -7
- package/node_modules/@types/node/ts4.8/crypto.d.ts +41 -9
- package/node_modules/@types/node/ts4.8/dgram.d.ts +10 -0
- package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +355 -1
- package/node_modules/@types/node/ts4.8/fs.d.ts +28 -8
- package/node_modules/@types/node/ts4.8/globals.d.ts +26 -0
- package/node_modules/@types/node/ts4.8/http.d.ts +6 -7
- package/node_modules/@types/node/ts4.8/module.d.ts +14 -0
- package/node_modules/@types/node/ts4.8/net.d.ts +8 -3
- package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +13 -7
- package/node_modules/@types/node/ts4.8/process.d.ts +25 -3
- package/node_modules/@types/node/ts4.8/querystring.d.ts +3 -3
- package/node_modules/@types/node/ts4.8/stream/web.d.ts +17 -1
- package/node_modules/@types/node/ts4.8/string_decoder.d.ts +2 -2
- package/node_modules/@types/node/ts4.8/test.d.ts +98 -15
- package/node_modules/@types/node/ts4.8/tls.d.ts +1 -1
- package/node_modules/@types/node/ts4.8/url.d.ts +59 -42
- package/node_modules/@types/node/ts4.8/util.d.ts +1 -1
- package/node_modules/@types/node/ts4.8/v8.d.ts +134 -5
- package/node_modules/@types/node/ts4.8/wasi.d.ts +26 -5
- package/node_modules/@types/node/url.d.ts +59 -42
- package/node_modules/@types/node/v8.d.ts +134 -5
- package/node_modules/@types/node/wasi.d.ts +26 -5
- package/node_modules/axios/CHANGELOG.md +53 -0
- package/node_modules/axios/README.md +47 -5
- package/node_modules/axios/dist/axios.js +368 -4
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +1 -1
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +28 -4
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +28 -4
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +1 -1
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +34 -6
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +1 -1
- package/node_modules/axios/index.d.ts +1 -1
- package/node_modules/axios/lib/adapters/http.js +6 -2
- package/node_modules/axios/lib/core/Axios.js +22 -1
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/combineURLs.js +1 -1
- package/node_modules/axios/lib/helpers/formDataToJSON.js +3 -0
- package/node_modules/axios/package.json +2 -2
- package/node_modules/call-bind/CHANGELOG.md +16 -0
- package/node_modules/call-bind/index.js +2 -11
- package/node_modules/call-bind/package.json +11 -6
- package/node_modules/define-data-property/CHANGELOG.md +29 -0
- package/node_modules/define-data-property/index.d.ts +12 -3
- package/node_modules/define-data-property/index.js +4 -16
- package/node_modules/define-data-property/package.json +26 -33
- package/node_modules/define-data-property/test/index.js +10 -10
- package/node_modules/es-define-property/.eslintrc +13 -0
- package/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/node_modules/es-define-property/.nycrc +9 -0
- package/node_modules/es-define-property/CHANGELOG.md +15 -0
- package/node_modules/es-define-property/LICENSE +21 -0
- package/node_modules/es-define-property/README.md +49 -0
- package/node_modules/es-define-property/index.d.ts +3 -0
- package/node_modules/es-define-property/index.js +16 -0
- package/node_modules/es-define-property/package.json +81 -0
- package/node_modules/es-define-property/test/index.js +55 -0
- package/node_modules/es-define-property/tsconfig.json +50 -0
- package/node_modules/es-errors/.eslintrc +5 -0
- package/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/node_modules/es-errors/CHANGELOG.md +40 -0
- package/node_modules/es-errors/LICENSE +21 -0
- package/node_modules/es-errors/README.md +55 -0
- package/node_modules/es-errors/eval.d.ts +3 -0
- package/node_modules/es-errors/eval.js +4 -0
- package/node_modules/es-errors/index.d.ts +3 -0
- package/node_modules/es-errors/index.js +4 -0
- package/node_modules/es-errors/package.json +80 -0
- package/node_modules/es-errors/range.d.ts +3 -0
- package/node_modules/es-errors/range.js +4 -0
- package/node_modules/es-errors/ref.d.ts +3 -0
- package/node_modules/es-errors/ref.js +4 -0
- package/node_modules/es-errors/syntax.d.ts +3 -0
- package/node_modules/es-errors/syntax.js +4 -0
- package/node_modules/es-errors/test/index.js +19 -0
- package/node_modules/es-errors/tsconfig.json +49 -0
- package/node_modules/es-errors/type.d.ts +3 -0
- package/node_modules/es-errors/type.js +4 -0
- package/node_modules/es-errors/uri.d.ts +3 -0
- package/node_modules/es-errors/uri.js +4 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +3 -0
- package/node_modules/fast-xml-parser/README.md +2 -1
- package/node_modules/fast-xml-parser/package.json +4 -1
- package/node_modules/fast-xml-parser/src/fxp.d.ts +363 -69
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +5 -5
- package/node_modules/follow-redirects/index.js +114 -75
- package/node_modules/follow-redirects/package.json +1 -1
- package/node_modules/get-intrinsic/CHANGELOG.md +18 -0
- package/node_modules/get-intrinsic/index.js +15 -7
- package/node_modules/get-intrinsic/package.json +12 -12
- package/node_modules/has-property-descriptors/CHANGELOG.md +8 -0
- package/node_modules/has-property-descriptors/index.js +3 -14
- package/node_modules/has-property-descriptors/package.json +5 -5
- package/node_modules/has-proto/CHANGELOG.md +15 -0
- package/node_modules/has-proto/index.d.ts +3 -0
- package/node_modules/has-proto/index.js +5 -1
- package/node_modules/has-proto/package.json +9 -5
- package/node_modules/has-proto/tsconfig.json +49 -0
- package/node_modules/has-tostringtag/.eslintrc +0 -6
- package/node_modules/has-tostringtag/.nycrc +13 -0
- package/node_modules/has-tostringtag/CHANGELOG.md +22 -0
- package/node_modules/has-tostringtag/index.d.ts +3 -0
- package/node_modules/has-tostringtag/index.js +1 -0
- package/node_modules/has-tostringtag/package.json +37 -13
- package/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/node_modules/has-tostringtag/shams.js +1 -0
- package/node_modules/has-tostringtag/test/shams/core-js.js +3 -0
- package/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +2 -0
- package/node_modules/has-tostringtag/test/tests.js +2 -1
- package/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/node_modules/hasown/CHANGELOG.md +8 -0
- package/node_modules/hasown/index.d.ts +3 -3
- package/node_modules/hasown/index.js +1 -1
- package/node_modules/hasown/package.json +13 -15
- package/node_modules/polygon-clipping/README.md +29 -26
- package/node_modules/polygon-clipping/dist/polygon-clipping.cjs.js +1398 -1421
- package/node_modules/polygon-clipping/dist/polygon-clipping.d.ts +13 -10
- package/node_modules/polygon-clipping/dist/polygon-clipping.esm.js +1139 -1427
- package/node_modules/polygon-clipping/dist/polygon-clipping.umd.js +1770 -1831
- package/node_modules/polygon-clipping/dist/polygon-clipping.umd.min.js +22 -8
- package/node_modules/polygon-clipping/dist/polygon-clipping.umd.min.js.map +1 -1
- package/node_modules/polygon-clipping/node_modules/robust-predicates/LICENSE +24 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/README.md +82 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/incircle.js +765 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/insphere.js +766 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/orient2d.js +184 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/orient3d.js +462 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/util.js +138 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/index.d.ts +49 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/index.js +5 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/package.json +75 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/incircle.js +908 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/incircle.min.js +1 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/insphere.js +914 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/insphere.min.js +1 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/orient2d.js +280 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/orient2d.min.js +1 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/orient3d.js +601 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/orient3d.min.js +1 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/predicates.js +2328 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/predicates.min.js +1 -0
- package/node_modules/polygon-clipping/package.json +30 -25
- package/node_modules/protobufjs/dist/light/protobuf.js +4 -4
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/protobuf.js +4 -4
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/package.json +1 -1
- package/node_modules/protobufjs/src/root.js +2 -2
- package/node_modules/regexp.prototype.flags/CHANGELOG.md +13 -0
- package/node_modules/regexp.prototype.flags/implementation.js +2 -2
- package/node_modules/regexp.prototype.flags/package.json +11 -10
- package/node_modules/regexp.prototype.flags/test/tests.js +13 -13
- package/node_modules/set-function-length/CHANGELOG.md +18 -0
- package/node_modules/set-function-length/env.d.ts +6 -0
- package/node_modules/set-function-length/env.d.ts.map +1 -0
- package/node_modules/set-function-length/env.js +9 -4
- package/node_modules/set-function-length/index.d.ts +7 -0
- package/node_modules/set-function-length/index.d.ts.map +1 -0
- package/node_modules/set-function-length/index.js +6 -3
- package/node_modules/set-function-length/package.json +33 -13
- package/node_modules/set-function-length/tsconfig.json +59 -0
- package/node_modules/set-function-name/.eslintrc +1 -0
- package/node_modules/set-function-name/CHANGELOG.md +9 -0
- package/node_modules/set-function-name/index.d.ts +5 -0
- package/node_modules/set-function-name/index.js +4 -3
- package/node_modules/set-function-name/package.json +28 -9
- package/node_modules/set-function-name/tsconfig.json +59 -0
- package/package.json +4 -4
- package/tak-ingest.js +4 -0
- package/node_modules/define-data-property/index.d.ts.map +0 -1
- package/node_modules/hasown/index.d.ts.map +0 -1
- package/node_modules/polygon-clipping/CHANGELOG.md +0 -129
package/tak-ingest.js
CHANGED
|
@@ -87,6 +87,10 @@ module.exports = function(RED) {
|
|
|
87
87
|
return;
|
|
88
88
|
}
|
|
89
89
|
msg.payload = msg.payload.trim();
|
|
90
|
+
var p = msg.payload.indexOf("<event");
|
|
91
|
+
if (p >= 0) {
|
|
92
|
+
msg.payload = msg.payload.substr(p);
|
|
93
|
+
}
|
|
90
94
|
if (msg.payload.indexOf("<event") !== 0) {
|
|
91
95
|
if (msg.payload.trim().length > 0 && msg.payload !== '</event>') { // ignore blank lines
|
|
92
96
|
node.error("Input is not an XML event string.",msg);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"8BAqBiB,OAAO,WAAW,EAAE,OAAO,CAAC,YAAY,WAAW,SAAS,OAAO,kBAAkB,OAAO,GAAG,IAAI,gBAAgB,OAAO,GAAG,IAAI,oBAAoB,OAAO,GAAG,IAAI,UAAU,OAAO,KAAK,IAAI"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"4BAMe,EAAE,KAAK,WAAW"}
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
This project adheres to [Semantic Versioning](https://semver.org/).
|
|
4
|
-
|
|
5
|
-
## v0.15.3 (2021-04-20)
|
|
6
|
-
|
|
7
|
-
* Update dependencies [#110](https://github.com/mfogel/polygon-clipping/pull/110), [#113](https://github.com/mfogel/polygon-clipping/pull/113), [#114](https://github.com/mfogel/polygon-clipping/pull/114)
|
|
8
|
-
|
|
9
|
-
## v0.15.2 (2020-12-15)
|
|
10
|
-
|
|
11
|
-
* Update dependencies [#109](https://github.com/mfogel/polygon-clipping/pull/109)
|
|
12
|
-
|
|
13
|
-
## v0.15.1 (2020-07-08)
|
|
14
|
-
|
|
15
|
-
* Bug fix [#99](https://github.com/mfogel/polygon-clipping/issues/99)
|
|
16
|
-
|
|
17
|
-
## v0.15.0 (2020-07-03)
|
|
18
|
-
|
|
19
|
-
* Limit data structure depth [#97](https://github.com/mfogel/polygon-clipping/issues/97)
|
|
20
|
-
|
|
21
|
-
## v0.14.3 (2019-10-26)
|
|
22
|
-
|
|
23
|
-
* Bug fixes: [#78](https://github.com/mfogel/polygon-clipping/issues/78), [#79](https://github.com/mfogel/polygon-clipping/issues/79), [#80](https://github.com/mfogel/polygon-clipping/issues/80), [#81](https://github.com/mfogel/polygon-clipping/issues/81), [#82](https://github.com/mfogel/polygon-clipping/issues/82), [#85](https://github.com/mfogel/polygon-clipping/issues/85)
|
|
24
|
-
|
|
25
|
-
## v0.14.2 (2019-07-27)
|
|
26
|
-
|
|
27
|
-
* Add typescript declarations [#76](https://github.com/mfogel/polygon-clipping/issues/76)
|
|
28
|
-
* Upgrade project dependencies
|
|
29
|
-
|
|
30
|
-
## v0.14.1 (2019-05-14)
|
|
31
|
-
|
|
32
|
-
* Upgrade splaytree dependency [#72](https://github.com/mfogel/polygon-clipping/issues/72)
|
|
33
|
-
|
|
34
|
-
## v0.14.0 (2019-03-30)
|
|
35
|
-
|
|
36
|
-
* Change winding rule from [even-odd](https://en.wikipedia.org/wiki/Even%E2%80%93odd_rule) to [non-zero](https://en.wikipedia.org/wiki/Nonzero-rule) ([#57](https://github.com/mfogel/polygon-clipping/issues/57))
|
|
37
|
-
* Performance improvements ([#55](https://github.com/mfogel/polygon-clipping/issues/55))
|
|
38
|
-
* Bug fixes (more instances of [#60](https://github.com/mfogel/polygon-clipping/issues/60))
|
|
39
|
-
|
|
40
|
-
## v0.13.0 (2019-02-26)
|
|
41
|
-
|
|
42
|
-
* Performance improvements: [Rounder() module](https://github.com/mfogel/polygon-clipping/commit/59b6713d4e72eedf23d64d0ac2a51c84ddce1df7)
|
|
43
|
-
* Bug fixes (more instances of [#60](https://github.com/mfogel/polygon-clipping/issues/60), [#69](https://github.com/mfogel/polygon-clipping/issues/69))
|
|
44
|
-
|
|
45
|
-
## v0.12.3 (2019-02-14)
|
|
46
|
-
|
|
47
|
-
* Bug fixes ([#60](https://github.com/mfogel/polygon-clipping/issues/60) again, [#62](https://github.com/mfogel/polygon-clipping/issues/62) again, [#68](https://github.com/mfogel/polygon-clipping/issues/68))
|
|
48
|
-
|
|
49
|
-
## v0.12.2 (2019-01-29)
|
|
50
|
-
|
|
51
|
-
* Add an unminified UMD to builds
|
|
52
|
-
* Minimize builds to only required files
|
|
53
|
-
|
|
54
|
-
## v0.12.1 (2019-01-29)
|
|
55
|
-
|
|
56
|
-
* Fix error in release process of v0.12.0
|
|
57
|
-
|
|
58
|
-
## v0.12.0 (2019-01-29)
|
|
59
|
-
|
|
60
|
-
* Bug fixes ([#65](https://github.com/mfogel/polygon-clipping/issues/65), [#66](https://github.com/mfogel/polygon-clipping/issues/66))
|
|
61
|
-
* Better packaging, switch to rollup ([#67](https://github.com/mfogel/polygon-clipping/issues/67))
|
|
62
|
-
* Upgrade development dependencies
|
|
63
|
-
|
|
64
|
-
## v0.11.1 (2019-01-20)
|
|
65
|
-
|
|
66
|
-
* Bug fixes ([#60](https://github.com/mfogel/polygon-clipping/issues/60), [#61](https://github.com/mfogel/polygon-clipping/issues/61), [#62](https://github.com/mfogel/polygon-clipping/issues/62))
|
|
67
|
-
* Fix package vulnerabilities ([#63](https://github.com/mfogel/polygon-clipping/issues/63))
|
|
68
|
-
|
|
69
|
-
## v0.11 (2019-01-13)
|
|
70
|
-
|
|
71
|
-
* Support IE11
|
|
72
|
-
* Bug fixes ([#37](https://github.com/mfogel/polygon-clipping/issues/37), [#58](https://github.com/mfogel/polygon-clipping/issues/58), [#59](https://github.com/mfogel/polygon-clipping/issues/59), [#60](https://github.com/mfogel/polygon-clipping/issues/60))
|
|
73
|
-
|
|
74
|
-
## v0.10 (2019-01-07)
|
|
75
|
-
|
|
76
|
-
* Support polygons with infinitely thin sections ([#48](https://github.com/mfogel/polygon-clipping/issues/48))
|
|
77
|
-
* Performance improvements ([#31](https://github.com/mfogel/polygon-clipping/issues/31))
|
|
78
|
-
* Bug fixes ([#41](https://github.com/mfogel/polygon-clipping/issues/41), [#49](https://github.com/mfogel/polygon-clipping/issues/49), [#51](https://github.com/mfogel/polygon-clipping/issues/51), [#53](https://github.com/mfogel/polygon-clipping/issues/53), [#54](https://github.com/mfogel/polygon-clipping/issues/54))
|
|
79
|
-
|
|
80
|
-
## v0.9.2 (2018-11-24)
|
|
81
|
-
|
|
82
|
-
* Don't overwrite globals ([#50](https://github.com/mfogel/polygon-clipping/issues/50))
|
|
83
|
-
|
|
84
|
-
## v0.9.1 (2018-11-12)
|
|
85
|
-
|
|
86
|
-
* Bug fixes ([#36](https://github.com/mfogel/polygon-clipping/issues/36) again, [#44](https://github.com/mfogel/polygon-clipping/issues/44))
|
|
87
|
-
|
|
88
|
-
## v0.9 (2018-10-17)
|
|
89
|
-
|
|
90
|
-
* Performance improvements ([#26](https://github.com/mfogel/polygon-clipping/issues/26))
|
|
91
|
-
* Bug fixes ([#36](https://github.com/mfogel/polygon-clipping/issues/36), [#38](https://github.com/mfogel/polygon-clipping/issues/38))
|
|
92
|
-
|
|
93
|
-
## v0.8 (2018-08-30)
|
|
94
|
-
|
|
95
|
-
* Export a default es6 module ([#33](https://github.com/mfogel/polygon-clipping/issues/33))
|
|
96
|
-
* Allow self-crossing rings using [even-odd rule](https://en.wikipedia.org/wiki/Even%E2%80%93odd_rule) ([#30](https://github.com/mfogel/polygon-clipping/issues/30))
|
|
97
|
-
* Fix bug with nearly vertical segments being split ([#29](https://github.com/mfogel/polygon-clipping/issues/29))
|
|
98
|
-
* Fix bug with coincident segments being split slightly differently ([#22](https://github.com/mfogel/polygon-clipping/issues/22))
|
|
99
|
-
|
|
100
|
-
## v0.7 (2018-06-06)
|
|
101
|
-
|
|
102
|
-
* Fix bug with overlapping segments ([#19](https://github.com/mfogel/polygon-clipping/issues/19))
|
|
103
|
-
* Set up es6 imports ([#18](https://github.com/mfogel/polygon-clipping/issues/18))
|
|
104
|
-
* Add [basic demo site](https://polygon-clipping.js.org/) ([#16](https://github.com/mfogel/polygon-clipping/issues/16))
|
|
105
|
-
* Add benchmarks `npm run bench` ([#15](https://github.com/mfogel/polygon-clipping/issues/15))
|
|
106
|
-
|
|
107
|
-
## v0.6.1 (2018-04-01)
|
|
108
|
-
|
|
109
|
-
* Performance improvements
|
|
110
|
-
* Drop (within rounding error) infinitely thin rings from output ([#14](https://github.com/mfogel/polygon-clipping/issues/14))
|
|
111
|
-
|
|
112
|
-
## v0.6 (2018-03-26)
|
|
113
|
-
|
|
114
|
-
* Ensure output rings are not self-intersecting ([#11](https://github.com/mfogel/polygon-clipping/issues/11))
|
|
115
|
-
* Allow self-touching (but not crossing) input rings ([#10](https://github.com/mfogel/polygon-clipping/issues/10))
|
|
116
|
-
* Support empty MultiPolygons as input
|
|
117
|
-
* Performance improvements (reduced memory footprint and lower CPU time)
|
|
118
|
-
* Handle segments with many coincidents ([#7](https://github.com/mfogel/polygon-clipping/issues/7))
|
|
119
|
-
* Handle very thin input polygons ([#6](https://github.com/mfogel/polygon-clipping/issues/6))
|
|
120
|
-
|
|
121
|
-
## v0.5 (2018-03-01)
|
|
122
|
-
|
|
123
|
-
* Remove `clean()` from module.exports ([#3](https://github.com/mfogel/polygon-clipping/issues/3))
|
|
124
|
-
* Expand `difference()` operation to optionally take multiple clippings ([#1](https://github.com/mfogel/polygon-clipping/issues/1))
|
|
125
|
-
* Use [splay-tree](https://github.com/w8r/splay-tree) instead of [avl](https://github.com/w8r/avl) to power the sweep line status tree ([#2](https://github.com/mfogel/polygon-clipping/issues/2))
|
|
126
|
-
|
|
127
|
-
## v0.4 (2018-02-27)
|
|
128
|
-
|
|
129
|
-
* First release as new package after fork from [martinez](https://github.com/w8r/martinez)
|