Skip to content

Commit

Permalink
release 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alucryd committed Mar 12, 2024
1 parent 81e4150 commit 09d1b3f
Show file tree
Hide file tree
Showing 7 changed files with 207 additions and 233 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get install liblz4-1 libuv1 libzopfli1 mame-tools yarn
run: sudo apt-get install bchunk libcubeb0 liblz4-1 libuv1 libzopfli1 mame-tools wit yarn
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Install rust toolchain
Expand All @@ -39,22 +39,22 @@ jobs:
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
args: --features benchmark,server
token: ${{secrets.GITHUB_TOKEN}}
- name: Run audit
uses: actions-rs/audit-check@v1
with:
args: --features server
token: ${{secrets.GITHUB_TOKEN}}
# - name: Run audit
# uses: actions-rs/audit-check@v1
# with:
# token: ${{secrets.GITHUB_TOKEN}}
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --features benchmark,server
args: --release --features server
- name: Test
uses: actions-rs/cargo@v1
with:
command: llvm-cov
args: --features benchmark,server --lcov --output-path lcov.info
args: --features server --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down
22 changes: 10 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
# 0.19.0
- Traits! Makes parts of the code actually reusable
- Add an optional post-conversion check
- Fix importing a couple more bogus DAT files
- Accept ZIP files as input for `import-dats`
- Add a `-u` flag to `import-roms` to skip user prompts
- Add a `-s` flag to `convert-roms` to select systems by name
- Update the `-s` flag in `import-roms` to behave the same as in `convert-roms`
- Add a `-f` flag in `purge-roms` to track and delete foreign files in the ROM directory
- Add a new `export-roms` subcommand
- Add support for WBFS in `export-roms`

# 0.18.0

- Replace `async-std` with `tokio`
Expand All @@ -21,6 +9,16 @@
- Add support for ZSO
- Add optional dependency on bchunk
- Allow filtering games by name in `check-roms`
- Traits! Makes parts of the code actually reusable
- Add an optional post-conversion check
- Fix importing a couple more bogus DAT files
- Accept ZIP files as input for `import-dats`
- Add a `-u` flag to `import-roms` to skip user prompts
- Add a `-s` flag to `convert-roms` to select systems by name
- Update the `-s` flag in `import-roms` to behave the same as in `convert-roms`
- Add a `-f` flag in `purge-roms` to track and delete foreign files in the ROM directory
- Add a new `export-roms` subcommand
- Add support for WBFS in `export-roms`

# 0.17.0

Expand Down
84 changes: 30 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ axum = { version = "0.7.4", default-features = false, features = [
"ws",
], optional = true }
cfg-if = "1.0.0"
clap = "4.5.1"
clap = "4.5.2"
crc32fast = "1.4.0"
dialoguer = "0.11.0"
digest = { version = "0.10.7", features = ["std"] }
dirs = "5.0.1"
dotenvy = "0.15.7"
env_logger = "0.11.2"
env_logger = "0.11.3"
flate2 = "1.0.28"
futures = "0.3.30"
http-types = { version = "2.12.0", optional = true }
Expand All @@ -52,20 +52,20 @@ phf = { version = "0.11.2", features = ["macros"] }
quick-xml = { version = "0.31.0", features = ["serialize"] }
rayon = "1.9.0"
regex = "1.10.3"
reqwest = { version = "0.11.24", default-features = false }
reqwest = { version = "0.11.26", default-features = false }
rust-embed = { version = "8.3.0", features = ["compression"] }
serde = { version = "1.0.197", features = ["derive"] }
sha1 = "0.10.6"
shiratsu-naming = "0.1.7"
simple-error = "0.3.0"
sqlx = { version = "0.7.3", default-features = false, features = [
sqlx = { version = "0.7.4", default-features = false, features = [
"macros",
"migrate",
"runtime-tokio",
"sqlite",
] }
strsim = "0.11.0"
strum = { version = "0.26.1", features = ["derive"] }
strum = { version = "0.26.2", features = ["derive"] }
tempfile = "3.10.1"
tokio = { version = "1.36.0", features = [
"fs",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@popperjs/core": "^2.11.8",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.2",
"@sveltejs/kit": "^2.5.3",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"bootstrap": "^5.3.3",
Expand All @@ -29,11 +29,11 @@
"prettier-plugin-svelte": "^3.2.2",
"pretty-bytes": "^6.1.1",
"svelte": "^4.2.12",
"svelte-check": "^3.6.6",
"svelte-check": "^3.6.7",
"svelte-fa": "^4.0.2",
"svelte-preprocess": "^5.1.3",
"sveltestrap": "^5.11.3",
"vite": "^5.1.5"
"vite": "^5.1.6"
},
"type": "module",
"healthier": {
Expand Down
Binary file added tests/dolphin-tool
Binary file not shown.
Loading

0 comments on commit 09d1b3f

Please sign in to comment.