File tree 2 files changed +12
-5
lines changed
2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
** Warning:** Features marked as * alpha* may change or be removed in a future release without notice. Use with caution.
6
6
7
+ ## [ 0.10.1] - 2025-05-08
8
+
9
+ ### Fixed
10
+
11
+ - Streamer was ignoring ` InferIgnoredImages ` parameter
12
+
7
13
## [ 0.10.0] - 2025-05-08
8
14
9
15
### Added
Original file line number Diff line number Diff line change @@ -76,11 +76,12 @@ func New(config Config) Streamer { // TODO contentProtections
76
76
}
77
77
78
78
return Streamer {
79
- parsers : config .Parsers ,
80
- inferA11yMetadata : config .InferA11yMetadata ,
81
- inferPageCount : config .InferPageCount ,
82
- archiveFactory : config .ArchiveFactory ,
83
- httpClient : config .HttpClient ,
79
+ parsers : config .Parsers ,
80
+ inferA11yMetadata : config .InferA11yMetadata ,
81
+ inferPageCount : config .InferPageCount ,
82
+ inferIgnoredImages : config .InferIgnoredImages ,
83
+ archiveFactory : config .ArchiveFactory ,
84
+ httpClient : config .HttpClient ,
84
85
}
85
86
}
86
87
You can’t perform that action at this time.
0 commit comments