Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Public MacOS 14 runner #68

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Bump ZipArchive 2.6.0
  • Loading branch information
hannesa2 committed Feb 2, 2025
commit 7937f2bb2e27a412d1b93fa368624867b185182a
2 changes: 1 addition & 1 deletion Carthage/Checkouts/ZipArchive
Submodule ZipArchive updated 61 files
+93 −0 .github/workflows/actions.yml
+0 −52 .github/workflows/gha.yml
+0 −143 .travis.yml
+0 −23 Example/ObjectiveCExample/AppDelegate.m
+ Example/ObjectiveCExampleTests/Fixtures/PasswordArchiveWithFolder.zip
+ Example/ObjectiveCExampleTests/Fixtures/TestPasswordArchive2.zip
+123 −21 Example/ObjectiveCExampleTests/SSZipArchiveTests.m
+14 −6 Example/Podfile
+4 −4 Example/Podfile.lock
+0 −25 Example/SwiftExample/AppDelegate.swift
+2 −4 Example/SwiftExample_macOS/AppDelegate.swift
+25 −25 Example/SwiftExample_macOS/Base.lproj/Main.storyboard
+548 −128 Example/ZipArchiveExample.xcodeproj/project.pbxproj
+8 −0 Example/ZipArchiveExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+8 −52 Example/ZipArchiveExample.xcodeproj/xcshareddata/xcschemes/ObjectiveCExample_iOS.xcscheme
+8 −11 Example/ZipArchiveExample.xcodeproj/xcshareddata/xcschemes/ObjectiveCExample_tvOS.xcscheme
+65 −0 Example/ZipArchiveExample.xcodeproj/xcshareddata/xcschemes/ObjectiveCExample_visionOS.xcscheme
+65 −0 Example/ZipArchiveExample.xcodeproj/xcshareddata/xcschemes/ObjectiveCExample_watchOS.xcscheme
+6 −23 Example/ZipArchiveExample.xcodeproj/xcshareddata/xcschemes/SwiftExample_iOS.xcscheme
+11 −5 Package.swift
+24 −8 README.md
+8 −8 Release-Instructions.md
+12 −10 SSZipArchive.podspec
+20 −7 SSZipArchive/SSZipArchive.h
+153 −45 SSZipArchive/SSZipArchive.m
+8 −5 SSZipArchive/SSZipCommon.h
+23 −0 SSZipArchive/Supporting Files/PrivacyInfo.xcprivacy
+33 −34 SSZipArchive/minizip/mz.h
+674 −359 SSZipArchive/minizip/mz_compat.c
+142 −46 SSZipArchive/minizip/mz_compat.h
+16 −25 SSZipArchive/minizip/mz_crypt.c
+2 −2 SSZipArchive/minizip/mz_crypt.h
+99 −60 SSZipArchive/minizip/mz_crypt_apple.c
+13 −18 SSZipArchive/minizip/mz_os.c
+3 −2 SSZipArchive/minizip/mz_os.h
+39 −49 SSZipArchive/minizip/mz_os_posix.c
+27 −31 SSZipArchive/minizip/mz_strm.c
+1 −1 SSZipArchive/minizip/mz_strm.h
+7 −9 SSZipArchive/minizip/mz_strm_buf.c
+1 −1 SSZipArchive/minizip/mz_strm_buf.h
+15 −18 SSZipArchive/minizip/mz_strm_mem.c
+1 −1 SSZipArchive/minizip/mz_strm_mem.h
+1 −1 SSZipArchive/minizip/mz_strm_os.h
+18 −21 SSZipArchive/minizip/mz_strm_os_posix.c
+11 −15 SSZipArchive/minizip/mz_strm_pkcrypt.c
+1 −1 SSZipArchive/minizip/mz_strm_pkcrypt.h
+21 −29 SSZipArchive/minizip/mz_strm_split.c
+1 −1 SSZipArchive/minizip/mz_strm_split.h
+14 −14 SSZipArchive/minizip/mz_strm_wzaes.c
+1 −1 SSZipArchive/minizip/mz_strm_wzaes.h
+14 −18 SSZipArchive/minizip/mz_strm_zlib.c
+1 −1 SSZipArchive/minizip/mz_strm_zlib.h
+141 −130 SSZipArchive/minizip/mz_zip.c
+4 −1 SSZipArchive/minizip/mz_zip.h
+129 −130 SSZipArchive/minizip/mz_zip_rw.c
+2 −2 SSZipArchive/minizip/mz_zip_rw.h
+223 −10 ZipArchive.xcodeproj/project.pbxproj
+4 −14 ZipArchive.xcodeproj/xcshareddata/xcschemes/ZipArchive-iOS.xcscheme
+4 −14 ZipArchive.xcodeproj/xcshareddata/xcschemes/ZipArchive-tvos.xcscheme
+66 −0 ZipArchive.xcodeproj/xcshareddata/xcschemes/ZipArchive-visionos.xcscheme
+4 −14 ZipArchive.xcodeproj/xcshareddata/xcschemes/ZipArchive-watchos.xcscheme
Loading