[PR #893] [MERGED] Update flux image formats #1179

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

📋 Pull Request Information

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

Base: develHead: fakeshemp/a2r-updates


📝 Commits (3)

  • b48436c Update A2R functionality
  • 1d7f5b0 Add Floppy_WriteProtection media tag
  • 5955c3c Use string literals for readability

📊 Changes

12 files changed (+808 additions, -103 deletions)

View changed files

📝 Aaru.CommonTypes/Enums/Images.cs (+4 -1)
📝 Aaru.Images/A2R/A2R.cs (+8 -1)
📝 Aaru.Images/A2R/Constants.cs (+23 -28)
📝 Aaru.Images/A2R/Enums.cs (+226 -0)
📝 Aaru.Images/A2R/Helpers.cs (+32 -13)
📝 Aaru.Images/A2R/Properties.cs (+62 -4)
📝 Aaru.Images/A2R/Read.cs (+140 -20)
📝 Aaru.Images/A2R/Structs.cs (+99 -5)
📝 Aaru.Images/A2R/Write.cs (+112 -20)
📝 Aaru.Images/HxCStream/HxCStream.cs (+4 -2)
📝 Aaru.Images/HxCStream/Properties.cs (+64 -3)
📝 Aaru.Images/HxCStream/Read.cs (+34 -6)

📄 Description

Types of changes

Add lots of comments and a few fixes to A2R.
Add a floppy write protection media tag and use it for A2R and HxCStream.

  • 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/893 **Author:** [@FakeShemp](https://github.com/FakeShemp) **Created:** 1/5/2026 **Status:** ✅ Merged **Merged:** 1/6/2026 **Merged by:** [@claunia](https://github.com/claunia) **Base:** `devel` ← **Head:** `fakeshemp/a2r-updates` --- ### 📝 Commits (3) - [`b48436c`](https://github.com/aaru-dps/Aaru/commit/b48436c2954ee93828996a9659bf4d4ac15309b8) Update A2R functionality - [`1d7f5b0`](https://github.com/aaru-dps/Aaru/commit/1d7f5b0de8b83410e6d026feffe91cd46cf57529) Add Floppy_WriteProtection media tag - [`5955c3c`](https://github.com/aaru-dps/Aaru/commit/5955c3cadeb8b8058fcc9ab7fbc6827b4186d358) Use string literals for readability ### 📊 Changes **12 files changed** (+808 additions, -103 deletions) <details> <summary>View changed files</summary> 📝 `Aaru.CommonTypes/Enums/Images.cs` (+4 -1) 📝 `Aaru.Images/A2R/A2R.cs` (+8 -1) 📝 `Aaru.Images/A2R/Constants.cs` (+23 -28) 📝 `Aaru.Images/A2R/Enums.cs` (+226 -0) 📝 `Aaru.Images/A2R/Helpers.cs` (+32 -13) 📝 `Aaru.Images/A2R/Properties.cs` (+62 -4) 📝 `Aaru.Images/A2R/Read.cs` (+140 -20) 📝 `Aaru.Images/A2R/Structs.cs` (+99 -5) 📝 `Aaru.Images/A2R/Write.cs` (+112 -20) 📝 `Aaru.Images/HxCStream/HxCStream.cs` (+4 -2) 📝 `Aaru.Images/HxCStream/Properties.cs` (+64 -3) 📝 `Aaru.Images/HxCStream/Read.cs` (+34 -6) </details> ### 📄 Description ## Types of changes Add lots of comments and a few fixes to A2R. Add a floppy write protection media tag and use it for A2R and HxCStream. <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [x] Bug fix (non-breaking change which fixes an issue) - [x] 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. --- <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:21 +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#1179