You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,9 @@ All notable changes to this project will be documented in this file. Take a look
14
14
* A new `Publication.conforms(to:)` API to identify the profile of a publication.
15
15
* Support for the [`conformsTo` RWPM metadata](https://github.com/readium/webpub-manifest/issues/65), to identify the profile of a `Publication`.
16
16
* Support for right-to-left PDF documents by extracting the reading progression from the `ViewerPreferences/Direction` metadata.
17
+
* HTTP client:
18
+
* A new `HTTPClient.download()` API to download HTTP resources to a temporary location.
19
+
*`HTTPRequest` and `DefaultHTTPClient` take an optional `userAgent` property to customize the user agent.
17
20
18
21
#### Navigator
19
22
@@ -28,12 +31,22 @@ All notable changes to this project will be documented in this file. Take a look
28
31
*`Publication.format` is now deprecated in favor of the new `Publication.conforms(to:)` API which is more accurate.
29
32
* For example, replace `publication.format == .epub` with `publication.conforms(to: .epub)` before opening a publication with the `EPUBNavigatorViewController`.
30
33
34
+
### Changed
35
+
36
+
#### LCP
37
+
38
+
* The `LCPService` now uses a provided `HTTPClient` instance for all HTTP requests.
39
+
31
40
### Fixed
32
41
33
42
#### Navigator
34
43
35
44
*[#14](https://github.com/readium/swift-toolkit/issues/14) Backward compatibility (iOS 10+) of JavaScript files is now handled with Babel.
0 commit comments