Skip to content

Commit

Permalink
0.5.22
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Oct 1, 2024
1 parent 2ff3715 commit 6446106
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{{$NEXT}}

0.5.22 2024-10-02T07:23:48+13:00
- Fix PDF 2.0 /NS entry in PDF::StructElem
- Fix /Subtype entry in PDF::EmbeddedFile
- Handle PDF 2.0 definitions PDF::Attributes

0.5.21 2024-09-07T04:55:34+12:00
- Fix flapping test in t/update.t
- Add PDF::Bead /Metadata entry (PDF 2.0)
Expand Down
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,5 @@
],
"test-depends": [
],
"version": "0.5.21"
"version": "0.5.22"
}
2 changes: 1 addition & 1 deletion lib/PDF/Class.rakumod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use v6;

#| PDF entry-point. either a trailer dict or an XRef stream
unit class PDF::Class:ver<0.5.21>;
unit class PDF::Class:ver<0.5.22>;

use PDF;
also is PDF;
Expand Down
5 changes: 4 additions & 1 deletion lib/PDF/EmbeddedFile.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ use ISO_32000_2::Table_44-Additional_entries_in_an_embedded_file_stream_dictiona
also does ISO_32000_2::Table_44-Additional_entries_in_an_embedded_file_stream_dictionary;

has PDF::COS::Name $.Type is entry where 'EmbeddedFile';
has PDF::COS::Name $.Subtype;
has PDF::COS::Name $.Subtype is entry; # (Optional, required in the case of an embedded file stream used as an associated
# file) The subtype of the embedded file. The value of this entry shall conform to the
# MIME media type names defined in Internet RFC 2046,

my role ParamsDict does PDF::COS::Tie::Hash {

use ISO_32000::Table_46-Entries_in_an_embedded_file_parameter_dictionary;
Expand Down

0 comments on commit 6446106

Please sign in to comment.