hexapdf 0.20.0 → 0.20.4
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +42 -0
- data/data/hexapdf/encoding/glyphlist.txt +4283 -4282
- data/data/hexapdf/encoding/zapfdingbats.txt +203 -202
- data/lib/hexapdf/cli/form.rb +9 -1
- data/lib/hexapdf/encryption/security_handler.rb +5 -1
- data/lib/hexapdf/font/encoding/glyph_list.rb +5 -6
- data/lib/hexapdf/font/type1_wrapper.rb +14 -15
- data/lib/hexapdf/task/dereference.rb +12 -4
- data/lib/hexapdf/task/optimize.rb +3 -3
- data/lib/hexapdf/type/annotation.rb +1 -1
- data/lib/hexapdf/type/signature/adbe_pkcs7_detached.rb +1 -5
- data/lib/hexapdf/type/signature/adbe_x509_rsa_sha1.rb +1 -5
- data/lib/hexapdf/type/signature/handler.rb +39 -11
- data/lib/hexapdf/version.rb +1 -1
- data/lib/hexapdf/writer.rb +11 -3
- data/test/hexapdf/encryption/test_security_handler.rb +11 -3
- data/test/hexapdf/font/test_type1_wrapper.rb +4 -0
- data/test/hexapdf/task/test_optimize.rb +4 -1
- data/test/hexapdf/test_writer.rb +13 -2
- data/test/hexapdf/type/signature/test_handler.rb +33 -7
- data/test/hexapdf/type/test_annotation.rb +7 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f88aacce2ba9f2df02fdeaf17019871c9f8e1f7ab9202aa4dd8af89b86394c5e
|
4
|
+
data.tar.gz: bca3c34f6f71da1ae6df8f81c98c69e3bdda09f71f195b46979e16be91a7e1b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ac8a3205b04705614dfa42fb0e73994aa7ccca90f23c73a0e7b8ba9f9932d18059ced2a62ecefd68c8f5425e3a354f51d8101e3b1b642d11312dbd3510ff1a6
|
7
|
+
data.tar.gz: 410c1cac0e07dfeda869d70a69370af74f255dcd17feb057064b39448b61d4494ea0bc7a05e99eefaa7a2459cc32bab4c01240b00dad9a6f63c83b32bc2176c2
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,45 @@
|
|
1
|
+
## 0.20.4 - 2022-01-26
|
2
|
+
|
3
|
+
### Fixed
|
4
|
+
|
5
|
+
* Regression when using Type1 font with different encodings
|
6
|
+
|
7
|
+
|
8
|
+
## 0.20.3 - 2022-01-24
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
|
12
|
+
* Appearance of signature field values when using the `hexapdf form` command
|
13
|
+
|
14
|
+
### Fixed
|
15
|
+
|
16
|
+
* Writing of encrypted PDF files in incremental node in case the encryption was
|
17
|
+
changed
|
18
|
+
* [HexaPDF::Type::Annotation#appearance] to return correctly wrapped object in
|
19
|
+
case of Form XObjects missing required data
|
20
|
+
* Decrypting of files with multiple revisions
|
21
|
+
|
22
|
+
|
23
|
+
## 0.20.2 - 2022-01-17
|
24
|
+
|
25
|
+
### Fixed
|
26
|
+
|
27
|
+
* [HexaPDF::Task::Optimize] so that page resource pruning works for pages
|
28
|
+
without XObjects
|
29
|
+
|
30
|
+
|
31
|
+
## 0.20.1 - 2022-01-05
|
32
|
+
|
33
|
+
### Changed
|
34
|
+
|
35
|
+
* Refactored signature handlers, making `#store_verification_callback` a
|
36
|
+
protected method
|
37
|
+
|
38
|
+
### Fixed
|
39
|
+
|
40
|
+
* [HexaPDF::Task::Dereference] to work for even very deeply nested structures
|
41
|
+
|
42
|
+
|
1
43
|
## 0.20.0 - 2021-12-30
|
2
44
|
|
3
45
|
### Added
|