Testing revealed that custom Huffman trees from our treegen cause the original UC2 Pro to hang even for single-file archives. The original's ASM decompressor kernel (nuke1) has undocumented assumptions about tree shapes that our treegen doesn't match. Default tree is the only working option for backward compatibility. Multi-file extraction remains a separate open issue (hangs even with default tree, while listing works).
44 lines
1.6 KiB
ReStructuredText
44 lines
1.6 KiB
ReStructuredText
Roadmap
|
|
=======
|
|
|
|
The development roadmap is maintained in ``ROADMAP.md`` at the project
|
|
root. Key phases:
|
|
|
|
1. **Decompression MVP** — Done. Portable decompressor, CLI tool,
|
|
CMake build system.
|
|
|
|
2. **Original Compression Engine** — Done. LZ77+Huffman compressor.
|
|
Cross-tool round-trip verified: original UC2 Pro archives extract
|
|
correctly in UC2 v3. Reverse direction: single-file UC2 v3
|
|
archives are readable by the original (listing + extraction).
|
|
Multi-file extraction hangs due to undocumented assumptions in the
|
|
original's ASM decompressor kernel.
|
|
|
|
3. **Modernized Master-Block Deduplication** — In progress.
|
|
Content-fingerprint grouping and custom master-block generation done
|
|
(FNV-1a sampling, MASMETA cdir records, SuperMaster-compressed
|
|
masters). Remaining: content-defined chunking, Merkle DAG,
|
|
cross-archive dedup, near-duplicate detection.
|
|
|
|
4. **Modern Compression Backends** — ANS entropy coding,
|
|
zstd-inspired dictionary compression, content-aware preprocessing.
|
|
|
|
5. **Quantum-Resistant Encryption** — CRYSTALS-Kyber + AES-256-GCM.
|
|
|
|
6. **DOS / FreeDOS / Retro-Computing** — DJGPP toolchain, vintage
|
|
hardware support, self-extracting archives.
|
|
|
|
7. **Cryptographic Integrity & Timestamping** — BLAKE3 hashing,
|
|
OpenTimestamps.
|
|
|
|
8. **Decentralized & Cloud Integration** — IPFS pinning,
|
|
content-addressable dedup, cloud archiving.
|
|
|
|
9. **Zero-Knowledge Proofs** — Privacy-preserving archive verification.
|
|
|
|
10. **Ecosystem Integrations** — libarchive plugin, streaming dedup
|
|
ingestion, file manager plugins.
|
|
|
|
See the full roadmap: `ROADMAP.md on GitHub
|
|
<https://github.com/evvaletov/uc2/blob/main/ROADMAP.md>`_.
|