[PR #809] [MERGED] Add A2R flux format support #1155

Closed
opened 2026-01-29 15:42:44 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/aaru-dps/Aaru/pull/809
Author: @FakeShemp
Created: 7/7/2023
Status: Merged
Merged: 7/9/2023
Merged by: @claunia

Base: develHead: fakeshemp/a2r


📝 Commits (1)

  • f6b8ba3 Add A2R flux format support

📊 Changes

17 files changed (+3448 additions, -4844 deletions)

View changed files

📝 .idea/.idea.Aaru/.idea/runConfigurations/Aaru.xml (+1 -1)
📝 Aaru.CommonTypes (+1 -1)
Aaru.Images/A2R/A2R.cs (+91 -0)
Aaru.Images/A2R/Constants.cs (+71 -0)
Aaru.Images/A2R/Enums.cs (+50 -0)
Aaru.Images/A2R/Helpers.cs (+165 -0)
Aaru.Images/A2R/Identify.cs (+57 -0)
Aaru.Images/A2R/Properties.cs (+84 -0)
Aaru.Images/A2R/Read.cs (+495 -0)
Aaru.Images/A2R/Structs.cs (+132 -0)
Aaru.Images/A2R/Write.cs (+338 -0)
📝 Aaru.Images/Authors.cs (+3 -2)
📝 Aaru.Images/Localization/Localization.Designer.cs (+1949 -4831)
📝 Aaru.Images/Localization/Localization.resx (+3 -0)
📝 Aaru.Images/SuperCardPro/Read.cs (+6 -7)
📝 Aaru.Images/SuperCardPro/Write.cs (+1 -1)
📝 Aaru/Commands/Image/Convert.cs (+1 -1)

📄 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.

From doc: https://applesaucefdc.com/a2r

Implements reading version 2 and 3. Writing only version 3.


🔄 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/809 **Author:** [@FakeShemp](https://github.com/FakeShemp) **Created:** 7/7/2023 **Status:** ✅ Merged **Merged:** 7/9/2023 **Merged by:** [@claunia](https://github.com/claunia) **Base:** `devel` ← **Head:** `fakeshemp/a2r` --- ### 📝 Commits (1) - [`f6b8ba3`](https://github.com/aaru-dps/Aaru/commit/f6b8ba3597d051b8f05647ce3fe80d870f805f57) Add A2R flux format support ### 📊 Changes **17 files changed** (+3448 additions, -4844 deletions) <details> <summary>View changed files</summary> 📝 `.idea/.idea.Aaru/.idea/runConfigurations/Aaru.xml` (+1 -1) 📝 `Aaru.CommonTypes` (+1 -1) ➕ `Aaru.Images/A2R/A2R.cs` (+91 -0) ➕ `Aaru.Images/A2R/Constants.cs` (+71 -0) ➕ `Aaru.Images/A2R/Enums.cs` (+50 -0) ➕ `Aaru.Images/A2R/Helpers.cs` (+165 -0) ➕ `Aaru.Images/A2R/Identify.cs` (+57 -0) ➕ `Aaru.Images/A2R/Properties.cs` (+84 -0) ➕ `Aaru.Images/A2R/Read.cs` (+495 -0) ➕ `Aaru.Images/A2R/Structs.cs` (+132 -0) ➕ `Aaru.Images/A2R/Write.cs` (+338 -0) 📝 `Aaru.Images/Authors.cs` (+3 -2) 📝 `Aaru.Images/Localization/Localization.Designer.cs` (+1949 -4831) 📝 `Aaru.Images/Localization/Localization.resx` (+3 -0) 📝 `Aaru.Images/SuperCardPro/Read.cs` (+6 -7) 📝 `Aaru.Images/SuperCardPro/Write.cs` (+1 -1) 📝 `Aaru/Commands/Image/Convert.cs` (+1 -1) </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) - [x] 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. From doc: https://applesaucefdc.com/a2r Implements reading version 2 and 3. Writing only version 3. --- <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:42:44 +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#1155