v0.5.3
Added
- For the
ls
command,-q
or--quiet
will suppress non-fatal error messages - For the
ls
command, include the file path in the error messages. Sample:
$ rom64 ls ~/Downloads
2022/03/17 Errors were encountered while listing some files:
2022/03/17 /home/mroach/Downloads/notarom.z64: Unknown ROM format. Invalid file?
2022/03/17 /home/mroach/Downloads/notarom.bin: EOF
+----------------+--------------+-----------+--------+---------+--------+-------+------+----------+----------+--------------------------+
| Image Name | File Format | Size (MB) | Rom ID | Version | Region | Video | CIC | CRC-1 | CRC-2 | File Name |
+----------------+--------------+-----------+--------+---------+--------+-------+------+----------+----------+--------------------------+
| SUPER MARIO 64 | Byte-swapped | 8 | NSME | 1.0 | USA | NTSC | 6102 | 635A2BFF | 8B022326 | Super Mario 64 (USA).n64 |
| | Big-endian | 2 | | 1.0 | | | 6102 | 5ECE09AE | 8230C82D | Tom Demo (PD).z64 |
+----------------+--------------+-----------+--------+---------+--------+-------+------+----------+----------+--------------------------+
With --quet
mode enabled:
rom64 ls ~/Downloads -q
+----------------+--------------+-----------+--------+---------+--------+-------+------+----------+----------+--------------------------+
| Image Name | File Format | Size (MB) | Rom ID | Version | Region | Video | CIC | CRC-1 | CRC-2 | File Name |
+----------------+--------------+-----------+--------+---------+--------+-------+------+----------+----------+--------------------------+
| SUPER MARIO 64 | Byte-swapped | 8 | NSME | 1.0 | USA | NTSC | 6102 | 635A2BFF | 8B022326 | Super Mario 64 (USA).n64 |
| | Big-endian | 2 | | 1.0 | | | 6102 | 5ECE09AE | 8230C82D | Tom Demo (PD).z64 |
+----------------+--------------+-----------+--------+---------+--------+-------+------+----------+----------+--------------------------+
Full Changelog: v0.5.2...v0.5.3