summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinTool/ConvertCommand.cpp
AgeCommit message (Collapse)Author
2025-04-23DolphinTool: Make variables constantDr. Dystopia
2024-08-16Small wording changes for dump conversionsTillmann Karras
2024-02-13DolphinTool: Fix parsing of command line bzip2 flagDentomologist
Use "bzip2" instead of "bzip" in optparse's compression choices for the convert command. This is both more accurate and matches what the ParseCompressionTypeString function expects. The mismatch between the two parsing functions prevented compression using bzip2 because either ParseCompressionTypeString or optparse would generate an error when using "bzip" or "bzip2" respectively. Fixes https://bugs.dolphin-emu.org/issues/13427
2023-06-17Merge pull request #11960 from Minty-Meeo/dolphin-tool-code-review-4Admiral H. Curtiss
DolphinTool: Use {fmt} library
2023-06-16DolphinTool: Less string copiesget
2023-06-16DolphinTool: Use {fmt} libraryget
2023-06-16DolphinTool: Use EXIT_SUCCESS and EXIT_FAILUREget
2023-06-16DolphinTool: Ditch OOP designget
2023-06-16DolphinTool: Sensible changesget
2022-08-04DiscIO: Replace IsDataSizeAccurate with GetDataSizeTypeJosJuice
Previously, we had WBFS and CISO which both returned an upper bound of the size, and other formats which returned an accurate size. But now we also have NFS, which returns a lower bound of the size. To allow VolumeVerifier to make better informed decisions for NFS, let's use an enum instead of a bool for the type of data size a blob has.
2022-05-02DolphinTool: add missing spaces in help textTillmann Karras
2022-03-23Merge pull request #10507 from JosJuice/convertcommand-non-gc-wiiAdmiral H. Curtiss
DolphinTool: Allow converting non-GC/Wii files
2022-03-22DolphinTool: Allow converting non-GC/Wii filesJosJuice
This was requested by a forum user, and I thought why not. It's a simple change to make since DiscIO already supports it, and I assume command-line users know roughly what they're doing.
2022-03-20Merge pull request #10491 from Minty-Meeo/dolphin-tool-more-stuffAdmiral H. Curtiss
More dolphin-tool features and options
2022-03-19Added a way to check Block Size, Compression Method, and Compression Level ↵Minty-Meeo
flags to dolphin-tool New dolphin-tool command: "header" -b / --block_size -c / --compression -l / --compression_level Informative RVZ/WIA header2 value "compression_level" is now a s32 instead of a u32, because negative compression is a thing. Speaking of, it is now possible to use negative compression levels in dolphin-tool's convert command (not the GUI, though).
2022-03-08DolphinTool: Kill an unnecessary unique_ptr.Jordan Woyak
2022-01-02DolphinTool: initialize user directories (fix unintential deletion of Wii files)ssdsnake
2021-12-03DolphinTool: CLI utility interface and disc image toolsssdsnake