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 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/2.4.0...HEAD
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
  ```