mirror of https://github.com/encounter/nod-rs.git
README updates
This commit is contained in:
parent
75e6f09b24
commit
b8b06dcd5c
14
README.md
14
README.md
|
@ -8,10 +8,10 @@
|
||||||
[rustdoc]: https://docs.rs/nod
|
[rustdoc]: https://docs.rs/nod
|
||||||
[Rust Version]: https://img.shields.io/badge/rust-1.81+-blue.svg?maxAge=3600
|
[Rust Version]: https://img.shields.io/badge/rust-1.81+-blue.svg?maxAge=3600
|
||||||
|
|
||||||
Library for traversing & reading Nintendo Optical Disc (GameCube and Wii) images.
|
Library for reading and writing Nintendo Optical Disc (GameCube and Wii) images.
|
||||||
|
|
||||||
Originally based on the C++ library [nod](https://github.com/AxioDL/nod),
|
Originally based on the C++ library [nod](https://github.com/AxioDL/nod),
|
||||||
but does not currently support authoring.
|
but with extended format support and many additional features.
|
||||||
|
|
||||||
Currently supported file formats:
|
Currently supported file formats:
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ Currently supported file formats:
|
||||||
- WIA / RVZ
|
- WIA / RVZ
|
||||||
- WBFS (+ NKit 2 lossless)
|
- WBFS (+ NKit 2 lossless)
|
||||||
- CISO (+ NKit 2 lossless)
|
- CISO (+ NKit 2 lossless)
|
||||||
- NFS (Wii U VC)
|
- NFS (Wii U VC, read-only)
|
||||||
- GCZ
|
- GCZ
|
||||||
- TGC
|
- TGC
|
||||||
|
|
||||||
|
@ -58,15 +58,17 @@ nodtool extract /path/to/game/content/hif_000000.nfs [outdir]
|
||||||
|
|
||||||
### convert
|
### convert
|
||||||
|
|
||||||
Converts any supported format to raw ISO.
|
Converts a disc image to any supported format.
|
||||||
|
|
||||||
|
See `nodtool convert --help` for more information.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
nodtool convert /path/to/game.wia /path/to/game.iso
|
nodtool convert /path/to/game.iso /path/to/game.rvz
|
||||||
```
|
```
|
||||||
|
|
||||||
### verify
|
### verify
|
||||||
|
|
||||||
Hashes the contents of a disc image and verifies it.
|
Verifies a disc image against an internal Redump database.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
nodtool verify /path/to/game.iso
|
nodtool verify /path/to/game.iso
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository.workspace = true
|
||||||
documentation = "https://docs.rs/nod"
|
documentation = "https://docs.rs/nod"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
description = """
|
description = """
|
||||||
Library for reading GameCube and Wii disc images.
|
Library for reading and writing GameCube and Wii disc images.
|
||||||
"""
|
"""
|
||||||
keywords.workspace = true
|
keywords.workspace = true
|
||||||
categories = ["command-line-utilities", "parser-implementations"]
|
categories = ["command-line-utilities", "parser-implementations"]
|
||||||
|
|
|
@ -9,7 +9,7 @@ repository.workspace = true
|
||||||
documentation = "https://docs.rs/nodtool"
|
documentation = "https://docs.rs/nodtool"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
description = """
|
description = """
|
||||||
CLI tool for verifying and converting GameCube and Wii disc images.
|
CLI tool for extracting and converting GameCube and Wii disc images.
|
||||||
"""
|
"""
|
||||||
keywords.workspace = true
|
keywords.workspace = true
|
||||||
categories = ["command-line-utilities", "parser-implementations"]
|
categories = ["command-line-utilities", "parser-implementations"]
|
||||||
|
|
Loading…
Reference in New Issue