Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
chamburr committed Jun 1, 2022
1 parent b531506 commit c59490b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Glance.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1214,23 +1214,23 @@
repositoryURL = "https://github.com/weichsel/ZIPFoundation";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.9.12;
minimumVersion = 0.9.14;
};
};
10779BE926217F25008A903C /* XCRemoteSwiftPackageReference "SWCompression" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/tsolomko/SWCompression";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 4.5.8;
minimumVersion = 4.8.1;
};
};
7E616BAE244997420043F7AB /* XCRemoteSwiftPackageReference "SwiftCSV" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/swiftcsv/SwiftCSV";
requirement = {
kind = upToNextMinorVersion;
minimumVersion = 0.5.6;
minimumVersion = 0.6.1;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
4 changes: 2 additions & 2 deletions QLPlugin/Views/Previews/ZIPPreview.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ class ZIPPreview: Preview {
entries.append(formatted)

fileCount += 1
uncompressed += entry.uncompressedSize
compressed += entry.compressedSize
uncompressed += Int(entry.uncompressedSize)
compressed += Int(entry.compressedSize)
}

result += "Archive: archive.zip\n"
Expand Down

0 comments on commit c59490b

Please sign in to comment.