Skip to content

Commit

Permalink
Merge pull request #8 from bodgit/issue7
Browse files Browse the repository at this point in the history
Add Wii support
  • Loading branch information
bodgit committed Jun 6, 2022
2 parents cd1e558 + bc35589 commit 4a8c79b
Show file tree
Hide file tree
Showing 12 changed files with 28,771 additions and 30 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
testdata/*.rvz filter=lfs diff=lfs merge=lfs -text
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
only-new-issues: true
- name: Test
run: go test -v -coverprofile=cover.out ./...
run: go test -v -short -coverprofile=cover.out ./...
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
Expand Down
2 changes: 2 additions & 0 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ linters:
enable-all: true
disable:
- exhaustivestruct
- exhaustruct
- godox
- goerr113
- gomnd
- ireturn
- nonamedreturns
- varnamelen
- wrapcheck
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
The [github.com/bodgit/rvz](https://github.com/bodgit/rvz) package reads the [RVZ disc image format](https://github.com/dolphin-emu/dolphin/blob/master/docs/WiaAndRvz.md) used by the [Dolphin emulator](https://dolphin-emu.org).

* Handles all supported compression methods; Zstandard is only marginally slower to read than no compression. Bzip2, LZMA, and LZMA2 are noticeably slower.
* Currently only GameCube disc images are supported.

How to read a disc image:
```golang
Expand Down
17 changes: 16 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,28 @@ module github.com/bodgit/rvz
go 1.17

require (
github.com/bodgit/plumbing v1.2.0
github.com/bodgit/rom v0.0.0-20220525084135-9efc26c9fe33
github.com/connesc/cipherio v0.2.1
github.com/klauspost/compress v1.15.6
github.com/stretchr/testify v1.7.1
github.com/ulikunitz/xz v0.5.10
)

require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/bodgit/sevenzip v1.2.2 // indirect
github.com/bodgit/windows v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gabriel-vasile/mimetype v1.4.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/nwaples/rardecode v1.1.3 // indirect
github.com/pierrec/lz4/v4 v4.1.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/uwedeportivo/torrentzip v1.0.0 // indirect
go4.org v0.0.0-20201209231011-d4a079459e60 // indirect
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)
268 changes: 266 additions & 2 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 4a8c79b

Please sign in to comment.