[PR #602] Add DMG support #1126

Open
opened 2026-01-29 22:19:06 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/602
Author: @adamhathcock
Created: 6/4/2021
Status: 🔄 Open

Base: masterHead: dmg


📝 Commits (8)

  • 5faa603 Merge pull request #1 from adamhathcock/master
  • d5e6c31 Merge pull request #2 from adamhathcock/master
  • 9600709 Add read-only support for DMG archives
  • 014ecd4 Merge pull request #3 from adamhathcock/master
  • d5cbe71 Revert global.json
  • 5acc195 Merge branch 'master' into master
  • 65bcfad Merge pull request #573 from Artentus/master
  • 83e8bf8 Add test dmg

📊 Changes

40 files changed (+3606 additions, -4 deletions)

View changed files

📝 src/SharpCompress/Archives/ArchiveFactory.cs (+15 -2)
src/SharpCompress/Archives/Dmg/DmgArchive.cs (+117 -0)
src/SharpCompress/Archives/Dmg/DmgArchiveEntry.cs (+32 -0)
📝 src/SharpCompress/Common/ArchiveException.cs (+5 -0)
📝 src/SharpCompress/Common/ArchiveType.cs (+2 -1)
src/SharpCompress/Common/Dmg/DmgBlockDataStream.cs (+323 -0)
src/SharpCompress/Common/Dmg/DmgEntry.cs (+52 -0)
src/SharpCompress/Common/Dmg/DmgFilePart.cs (+21 -0)
src/SharpCompress/Common/Dmg/DmgUtil.cs (+183 -0)
src/SharpCompress/Common/Dmg/DmgVolume.cs (+38 -0)
src/SharpCompress/Common/Dmg/HFS/HFSCatalogRecord.cs (+336 -0)
src/SharpCompress/Common/Dmg/HFS/HFSExtentDescriptor.cs (+31 -0)
src/SharpCompress/Common/Dmg/HFS/HFSExtentRecord.cs (+115 -0)
src/SharpCompress/Common/Dmg/HFS/HFSFinderInfo.cs (+145 -0)
src/SharpCompress/Common/Dmg/HFS/HFSForkData.cs (+50 -0)
src/SharpCompress/Common/Dmg/HFS/HFSForkStream.cs (+196 -0)
src/SharpCompress/Common/Dmg/HFS/HFSKeyedRecord.cs (+91 -0)
src/SharpCompress/Common/Dmg/HFS/HFSPermissions.cs (+35 -0)
src/SharpCompress/Common/Dmg/HFS/HFSStructBase.cs (+187 -0)
src/SharpCompress/Common/Dmg/HFS/HFSTreeHeaderRecord.cs (+108 -0)

...and 20 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/adamhathcock/sharpcompress/pull/602 **Author:** [@adamhathcock](https://github.com/adamhathcock) **Created:** 6/4/2021 **Status:** 🔄 Open **Base:** `master` ← **Head:** `dmg` --- ### 📝 Commits (8) - [`5faa603`](https://github.com/adamhathcock/sharpcompress/commit/5faa603d5964f038f09f6e4779f615712d3a6934) Merge pull request #1 from adamhathcock/master - [`d5e6c31`](https://github.com/adamhathcock/sharpcompress/commit/d5e6c31a9f7aa3c6fb1dc88f2afd7cf08365fd10) Merge pull request #2 from adamhathcock/master - [`9600709`](https://github.com/adamhathcock/sharpcompress/commit/9600709219ab1a8f6419a6cfc1e3268edc252809) Add read-only support for DMG archives - [`014ecd4`](https://github.com/adamhathcock/sharpcompress/commit/014ecd4fc1c24de5ad4b3c59769d1c496d6638f3) Merge pull request #3 from adamhathcock/master - [`d5cbe71`](https://github.com/adamhathcock/sharpcompress/commit/d5cbe71cae28c62d04587beffaee8986ec63e81d) Revert global.json - [`5acc195`](https://github.com/adamhathcock/sharpcompress/commit/5acc195cf737c39ba43f4a96ff0ac3c492ec778c) Merge branch 'master' into master - [`65bcfad`](https://github.com/adamhathcock/sharpcompress/commit/65bcfadfdefe7e4298b963a3bf09b3b1761caf3e) Merge pull request #573 from Artentus/master - [`83e8bf8`](https://github.com/adamhathcock/sharpcompress/commit/83e8bf8462f50a280937be89c7cc78c8431940f6) Add test dmg ### 📊 Changes **40 files changed** (+3606 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `src/SharpCompress/Archives/ArchiveFactory.cs` (+15 -2) ➕ `src/SharpCompress/Archives/Dmg/DmgArchive.cs` (+117 -0) ➕ `src/SharpCompress/Archives/Dmg/DmgArchiveEntry.cs` (+32 -0) 📝 `src/SharpCompress/Common/ArchiveException.cs` (+5 -0) 📝 `src/SharpCompress/Common/ArchiveType.cs` (+2 -1) ➕ `src/SharpCompress/Common/Dmg/DmgBlockDataStream.cs` (+323 -0) ➕ `src/SharpCompress/Common/Dmg/DmgEntry.cs` (+52 -0) ➕ `src/SharpCompress/Common/Dmg/DmgFilePart.cs` (+21 -0) ➕ `src/SharpCompress/Common/Dmg/DmgUtil.cs` (+183 -0) ➕ `src/SharpCompress/Common/Dmg/DmgVolume.cs` (+38 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSCatalogRecord.cs` (+336 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSExtentDescriptor.cs` (+31 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSExtentRecord.cs` (+115 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSFinderInfo.cs` (+145 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSForkData.cs` (+50 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSForkStream.cs` (+196 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSKeyedRecord.cs` (+91 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSPermissions.cs` (+35 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSStructBase.cs` (+187 -0) ➕ `src/SharpCompress/Common/Dmg/HFS/HFSTreeHeaderRecord.cs` (+108 -0) _...and 20 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 22:19:06 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1126