-
-
Notifications
You must be signed in to change notification settings - Fork 1
WhatsNew
github-actions[bot] edited this page Sep 16, 2026
·
5 revisions
-
A decoded ECM whose source was not a plain 2352-byte image is no longer reported as damaged. Alcohol
.mdfrips can store 2336-byte Mode 2 sectors, or 2448/2368-byte sectors carrying subchannel data, and all three were skipped with "the decoded image is not a whole number of 2352-byte CD sectors or 2048-byte data sectors" even though the ECM trailing checksum had already proved the file intact. The newRecoveredImageClassifierroutes every recovered image (ECM, ISZ, archive, split set) by its actual layout: raw 2352-byte CD sectors get a generated cue as before, 2048-byte sectors convert as a DVD image as before, 2336 and 2324-byte Mode 2 sectors get aMODE2/2336/MODE2/2324cue (both round-trip losslessly through chdman 0.289), and 2448/2368-byte rips have their subchannel tail stripped to 2352 and are then sniffed and cued — the same strip the.mdspath already used. Only a size that fits no standard layout is still reported as damaged. - The "not a whole number of 2352-byte CD sectors..." skip is now excluded from automatic bug reports, like the other user-data conditions.
- Test suite grew to 851 tests (recovered-image layout routing: 2336/2324 cues, 2448/2368 stripping, skip reasons).
-
A
.mdfno longer has to sit beside its.mdsunder the exact same name. The descriptor's data file is now found when it was renamed with a decoration (Game.mdsbesideGame (USA).mdf— but never when the name continues with a letter or digit, soGame 2never matchesGame), when it sits one folder down (only an unambiguous exact-name match, so a sibling game's image is never picked up), and split.i00sets are located by base name even when other sets share the folder. File names that differ only in Unicode composition (Cafe\u0301vsCafé) are treated as equal. -
Ambiguity is refused, not guessed: with
Game (Disc 1).mdfandGame (Disc 2).mdfboth besideGame.mds, the disc is skipped with the existing "data file was not found" message instead of converting the wrong disc.
- Archive copies retry transient I/O errors before the temp-copy fallback runs: a failed direct extraction (for example an SMB hiccup while streaming from a NAS) is demoted to a debug notice, and the automatic copy that precedes the fallback retries up to four times with increasing delays. Missing-source errors are never retried.
-
Network-unavailability detection is locale-independent: the Win32 error codes (bad netpath, unexpected network error, netname deleted, …) are now read from the exception's
HResult, so non-English Windows builds (e.g. French"Erreur réseau inattendue.") are recognized without relying on localized message text.
- A user with desktop composition disabled (registry/DWM tweak or third-party theming tool) got a
COMException 0x80263001fromWindowChromeWorker.DwmExtendFrameIntoClientAreareported as an unhandled dispatcher exception. It is now suppressed like the other known-benign WPF-internal exceptions: the window simply runs without the glass frame effect.
-
"The output folder is not writable" (root of
C:\,Program Files, a read-only drive) is excluded from automatic reports — the batch-start probe already shows one actionable dialog and nothing was converted.
-
Release zips are leaner: the library
.xmlIntelliSense doc files (CCDSharp.xml,CSOSharp.xml,PBPSharp.xml) are no longer included — nothing at runtime uses them. - Library updates: Meziantou.Analyzer 3.0.259, Microsoft.NET.Test.Sdk 18.10.1.
- Test suite grew to 842 tests (decorated/ambiguous/subdirectory/split/Unicode
.mdflookup, transient network copy retries, SFO size bounds, the new bug-report exclusion).
-
Extract split 7-Zip and ZIP sets in-app (
.7z.001/.zip.001style): what used to be skipped with "extract the set manually" is now extracted with the bundled7za.exeand converted like any other input. The whole set is located from the first volume, disk space is checked against the total size of all volumes, and the extracted image is classified (cue/gdi/toc convert directly, bare images get the same recovery path as joined sets). Multi-part RAR still needs manual extraction, since the app does not carry RAR tooling. - Split-set skip notices (missing volume, no convertible image inside, missing
7za) are user-data conditions and are excluded from automatic bug reports.
-
Output folder auto-fill: selecting a source folder (browse or command line) now sets the Output CHD destination to the same folder when the output path is still empty. This is safe by construction — outputs are staged
<name>.chdtmpand moved into place only on success, and existing CHDs are never inputs. - Disconnected output drive detected up front: a batch whose output folder sits on an unplugged USB stick or a dropped network drive now probes the folder once and reports a single actionable message, instead of failing every file with a confusing path error mid-batch.
- Temp-folder cleanup is best effort: staged files carrying the read-only attribute (or locked by antivirus) no longer abort the batch or get reported as app bugs — attributes are cleared before deleting, directory read-only flags included, and a leftover temp folder is only logged as a warning.
The bundled PBP library was aligned with all four reference implementations (popstation, PSX2PSP, iPoPS, pop-fe), so PBP files that earlier versions rejected now extract:
-
pop-fe multi-disc PBPs no longer rejected: pop-fe leaves the four "template" DWORDs of the
PSTITLEIMG000000header zero (popstation/PSX2PSP write fixed magic values there). The header values are no longer validated — the disc position table, which is what actually locates the discs, is honoured regardless. - PARAM.SFO is no longer required: a missing or corrupt SFO leaves title/disc-id metadata empty instead of rejecting the whole file. None of the reference tools read the SFO when extracting disc images.
-
zlib-wrapped PSAR blocks decompress: blocks authored with
zlib.compress(2-byte header + Adler-32) instead of raw deflate are retried as zlib streams after the raw inflate fails. -
pop-fe index layout supported: the official 16-bit index entry (size
uint16at bytes 4–5, stored-flag byte at 6, SHA-1 at 8–23) is read directly; tools that write the size as a 32-bit int (popstation/PSX2PSP/iPoPS) are still covered because bytes 6–7 stay zero there. -
Stored/uncompressed blocks flagged in the index (pop-fe
--compression 0) are copied verbatim instead of being inflated. - Incompressible blocks accepted: index entries a few bytes larger than the raw 16-sector block (deflate framing on incompressible data) are no longer rejected.
- 64-bit offset math for block reads, so multi-gigabyte files cannot overflow the 32-bit offset computation.
- Hardened against corrupt indexes: an entry claiming to be a stored block larger than a full block is reported as corrupt data instead of overrunning the read buffer, and the split-set disk-space check now uses the whole volume set rather than the first volume alone.
- chdman crashes during the startup probe (entry-point-not-found / illegal-instruction exit codes — an installation incompatibility, not app logic) are excluded.
- "Output folder is not available" notices (unplugged drive) are excluded.
- Version bumps: application 3.7.0, PBPSharp 1.1.0.
- Library updates: Meziantou.Analyzer 3.0.231, Microsoft.NET.Test.Sdk 18.10.0.
- Test suite grew to 835 tests (split-volume-set extraction, PBP index/deflate variants, pop-fe multi-disc, SFO tolerance, bug-report exclusions).
-
A batch runs on the CHDSharp fallback when
chdmanis missing or fails its startup probe, instead of refusing to start. The startup dialog severity now reflects encoder priority (critical only when both encoders are unusable).
-
Corrupt deflate streams are classified as data errors:
IndexOutOfRangeExceptionleaking from SharpZipLib's inflater is normalized toPbpError.DecompressionError, so a garbage PSAR block is reported as corrupt data instead of an app bug (regression-tested). - PBPSharp version bumps with the hardened block reader.
-
Shutdown cancellation is treated as normal exit: cancelling the window during startup no longer reports a
TaskCanceledExceptionbug report. - Bug-report noise reduction: encoder-missing notices, chdman fallback notices, CHD open/read failures, file-move failures, encoder start failures and low-disk-space warnings are excluded from automatic reports (low disk space is now informational, since the conversion proceeds).
-
0xC0000139(entry point not found) crash decoding added alongside the existing illegal-instruction mapping.
- Library updates: NAudio 3.1.0, Meziantou.Analyzer 3.0.226; bundled 7-Zip binaries refreshed.
- Application version bumped to 3.6.0; test suite at 820 tests.