Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Zotero.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7397,7 +7397,7 @@
repositoryURL = "https://github.com/Alamofire/Alamofire";
requirement = {
kind = exactVersion;
version = 5.11.0;
version = 5.11.1;
};
};
B356A367252490DB003F1943 /* XCRemoteSwiftPackageReference "keychain-swift" */ = {
Expand Down Expand Up @@ -7477,15 +7477,15 @@
repositoryURL = "https://github.com/ReactiveX/RxSwift";
requirement = {
kind = exactVersion;
version = 6.9.1;
version = 6.10.1;
};
};
B3A6C59D252CA08200F24CBE /* XCRemoteSwiftPackageReference "PSPDFKit-SP" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/PSPDFKit/PSPDFKit-SP";
requirement = {
kind = exactVersion;
version = 26.4.0;
version = 26.5.0;
};
};
B3D84BEE27919FDE005DDD7C /* XCRemoteSwiftPackageReference "Starscream" */ = {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1545,7 +1545,9 @@ final class PDFReaderActionHandler: ViewModelActionHandler, BackgroundDbProcessi
// TODO: Remove if issues are fixed in PSPDFKit
/// Transforms highlight/underline annotation if needed.
/// (a) Merges rects that are in the same text line.
/// (b) Trims different line rects that overlap. (only for highlight annotations)
/// (b) Trims different line rects that overlap. This is needed only for highlight annotations.
/// PSPDFKit 26.5.0 fixed the highlight annotation rendering so that overlapping rects don't blend,
/// but rects values are exactly the same as before, so we still need to transform them for our needs.
/// If not a higlight/underline annotation, or transformations are not needed, it returns nil.
/// Issue appeared in PSPDFKit 13.5.0
/// - parameter annotation: Annotation to be transformed if needed
Expand Down