muhammara 2.4.0 → 3.0.0
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 +43 -1
- package/README.md +7 -0
- package/muhammara.d.ts +264 -242
- package/muhammara.js +1 -1
- package/node_modules/minipass/LICENSE +1 -1
- package/node_modules/minipass/README.md +122 -7
- package/node_modules/minipass/index.d.ts +149 -0
- package/node_modules/minipass/index.js +191 -102
- package/node_modules/minipass/package.json +23 -7
- package/node_modules/safe-buffer/package.json +1 -0
- package/node_modules/set-blocking/package.json +1 -2
- package/node_modules/string-width/package.json +4 -1
- package/node_modules/strip-ansi/package.json +3 -1
- package/node_modules/tr46/package.json +1 -1
- package/node_modules/util-deprecate/package.json +1 -1
- package/node_modules/webidl-conversions/package.json +1 -1
- package/node_modules/whatwg-url/package.json +1 -1
- package/node_modules/wrappy/package.json +1 -1
- package/package.json +6 -5
- package/src/AbstractContentContextDriver.cpp +104 -35
- package/src/DocumentCopyingContextDriver.cpp +9 -9
- package/src/ObjectByteWriterWithPosition.cpp +15 -7
- package/src/ObjectsContextDriver.cpp +1 -1
- package/src/deps/PDFWriter/CFFANSIFontWriter.cpp +1 -1
- package/src/deps/PDFWriter/ETokenSeparator.h +1 -1
- package/src/deps/PDFWriter/ObjectsContext.h +1 -1
- package/src/deps/PDFWriter/PDFDocumentHandler.cpp +6 -2
- package/src/deps/PDFWriter/PrimitiveObjectsWriter.h +1 -1
- package/src/muhammara.cpp +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,45 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.0.0] - 2022-07-19
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Links in docs
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- drawPath can now be used differently and this new way can be described with ts.
|
|
19
|
+
The old style is `drawPath(x1, y1, x2, y2..., options)` we now allow `drawPath([[x1, y1], [x2, y2]...], options)` too
|
|
20
|
+
- scn and SCN can now be used differently and this new way can be described with ts.
|
|
21
|
+
The old style is `scn(c1, c2, c3, c4, ..., 'patternName')` we now allow `scn([[c1, c2, c3, c4, ...], 'patternName')` too
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Bump dev dependency versions s
|
|
26
|
+
|
|
27
|
+
### Breaking
|
|
28
|
+
|
|
29
|
+
- Node < 11 and Electron < 11 removed
|
|
30
|
+
- Renamed typo exported value from eTokenSeprator to eTokenSeparator
|
|
31
|
+
|
|
32
|
+
## [2.6.0] - 2022-06-30
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
|
|
36
|
+
- Fixes hard crash to exception when creating a stream with null object and calling createWriter with it
|
|
37
|
+
- Fixes missing buffer information for recrypt typescript definition
|
|
38
|
+
- Fixes missing options for append pdf pages
|
|
39
|
+
- Fixes NPE when stream is not readable in write stream object (PDFDocumentHandler)
|
|
40
|
+
|
|
41
|
+
## [2.5.0] - 2022-06-23
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
|
|
45
|
+
- Electron 17.2.0, 17.3, 17.4
|
|
46
|
+
- Typescript definitions
|
|
47
|
+
- Add test for recrypt with streams
|
|
48
|
+
|
|
10
49
|
## [2.4.0] - 2022-06-08
|
|
11
50
|
|
|
12
51
|
### Added
|
|
@@ -224,7 +263,10 @@ with the following changes.
|
|
|
224
263
|
|
|
225
264
|
* Initial release
|
|
226
265
|
|
|
227
|
-
[Unreleased]: https://github.com/julianhille/MuhammaraJS/compare/
|
|
266
|
+
[Unreleased]: https://github.com/julianhille/MuhammaraJS/compare/3.0.0...HEAD
|
|
267
|
+
[3.0.0]: https://github.com/julianhille/MuhammaraJS/compare/2.6.0...3.0.0
|
|
268
|
+
[2.6.0]: https://github.com/julianhille/MuhammaraJS/compare/2.5.0...2.6.0
|
|
269
|
+
[2.5.0]: https://github.com/julianhille/MuhammaraJS/compare/2.4.0...2.5.0
|
|
228
270
|
[2.4.0]: https://github.com/julianhille/MuhammaraJS/compare/2.3.0...2.4.0
|
|
229
271
|
[2.3.0]: https://github.com/julianhille/MuhammaraJS/compare/2.2.0...2.3.0
|
|
230
272
|
[2.2.0]: https://github.com/julianhille/MuhammaraJS/compare/2.1.0...2.2.0
|
package/README.md
CHANGED
|
@@ -22,6 +22,13 @@ If you are looking for a C++ Library go [here](https://github.com/galkahana/PDF-
|
|
|
22
22
|
Version 2.0 will be incompatible with some older node and
|
|
23
23
|
electron versions because we needed to upgrade node-pre-gyp.
|
|
24
24
|
|
|
25
|
+
Version 3.x has breaking changes:
|
|
26
|
+
|
|
27
|
+
- Node < 11 and Electron < 11 removed the prebuilts
|
|
28
|
+
- Renamed typo exported value from eTokenSeprator to eTokenSeparator
|
|
29
|
+
|
|
30
|
+
This wont affect alot of you but still.
|
|
31
|
+
|
|
25
32
|
# Installation
|
|
26
33
|
|
|
27
34
|
```
|