[PR #892] [MERGED] Add HxCStream support #1180

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

📋 Pull Request Information

Original PR: https://github.com/aaru-dps/Aaru/pull/892
Author: @FakeShemp
Created: 1/5/2026
Status: Merged
Merged: 1/5/2026
Merged by: @claunia

Base: develHead: fakeshemp/hxcstream


📝 Commits (1)

📊 Changes

13 files changed (+1619 additions, -1 deletions)

View changed files

📝 Aaru.CommonTypes/Interfaces/IFluxImage.cs (+1 -1)
📝 Aaru.Compression/Aaru.Compression.csproj (+1 -0)
Aaru.Compression/LZ4.cs (+49 -0)
Aaru.Images/HxCStream/Constants.cs (+51 -0)
Aaru.Images/HxCStream/Helpers.cs (+266 -0)
Aaru.Images/HxCStream/HxCStream.cs (+75 -0)
Aaru.Images/HxCStream/Identify.cs (+62 -0)
Aaru.Images/HxCStream/Properties.cs (+107 -0)
Aaru.Images/HxCStream/Read.cs (+702 -0)
Aaru.Images/HxCStream/Structs.cs (+206 -0)
Aaru.Images/HxCStream/Verify.cs (+90 -0)
📝 Aaru.Images/Localization/Localization.Designer.cs (+6 -0)
📝 Aaru.Images/Localization/Localization.resx (+3 -0)

📄 Description

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • New filesystem, test images in [url]
  • New media image, test images in [url]
  • New partition scheme, test images in [url]
  • Breaking change (fix or feature that would cause existing functionality to change)
  • I have read the CONTRIBUTING document.
  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

🔄 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/aaru-dps/Aaru/pull/892 **Author:** [@FakeShemp](https://github.com/FakeShemp) **Created:** 1/5/2026 **Status:** ✅ Merged **Merged:** 1/5/2026 **Merged by:** [@claunia](https://github.com/claunia) **Base:** `devel` ← **Head:** `fakeshemp/hxcstream` --- ### 📝 Commits (1) - [`0219f7b`](https://github.com/aaru-dps/Aaru/commit/0219f7b4deb6c0e48bc74ece483150a813b8d735) Add HxCStream support ### 📊 Changes **13 files changed** (+1619 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `Aaru.CommonTypes/Interfaces/IFluxImage.cs` (+1 -1) 📝 `Aaru.Compression/Aaru.Compression.csproj` (+1 -0) ➕ `Aaru.Compression/LZ4.cs` (+49 -0) ➕ `Aaru.Images/HxCStream/Constants.cs` (+51 -0) ➕ `Aaru.Images/HxCStream/Helpers.cs` (+266 -0) ➕ `Aaru.Images/HxCStream/HxCStream.cs` (+75 -0) ➕ `Aaru.Images/HxCStream/Identify.cs` (+62 -0) ➕ `Aaru.Images/HxCStream/Properties.cs` (+107 -0) ➕ `Aaru.Images/HxCStream/Read.cs` (+702 -0) ➕ `Aaru.Images/HxCStream/Structs.cs` (+206 -0) ➕ `Aaru.Images/HxCStream/Verify.cs` (+90 -0) 📝 `Aaru.Images/Localization/Localization.Designer.cs` (+6 -0) 📝 `Aaru.Images/Localization/Localization.resx` (+3 -0) </details> ### 📄 Description ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] New filesystem, test images in [url] - [x] New media image, test images in [url] - [ ] New partition scheme, test images in [url] - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [x] I have read the **CONTRIBUTING** document. - [x] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. --- <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 15:43:22 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: aaru-dps/Aaru-aaru-dps#1180