Skip to content

Commit ee772db

Browse files
committed
more file types
1 parent 4eb4997 commit ee772db

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "patchstorage"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55

66
[dependencies]

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Download Eventide and Meris patches from patchstorage.
22

3-
Supports Eventide H90, Meris Enzo X, Meris LVX, and Meris MercuryX.
3+
Supports:
4+
* Eventide H90
5+
* Meris Enzo X
6+
* Meris LVX
7+
* Meris MercuryX
8+
* Bram Bos Mozaic
9+
* Empress ZOIA
410

511
```shell
612
cargo build && cargo test

src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ async fn main() -> Result<()> {
4747
);
4848

4949
let (platform, extensions) = match args.platform {
50-
Platform::EventideH90 => (8271, vec!["lst90", "pgm90", "preset90", "zip"]),
50+
Platform::EventideH90 => (8271, vec!["pgm90", "lst90", "preset90", "zip"]),
5151
Platform::MerisEnzoX => (10559, vec!["syx"]),
5252
Platform::MerisLvx => (8008, vec!["syx"]),
5353
Platform::MerisMercuryX => (9190, vec!["syx"]),
54-
Platform::Mozaic => (3341, vec!["mozaic"]), // extensions: mozaic, bin, zip
55-
Platform::Zoia => (3003, vec!["bin"]), // extensions: bin, zip
54+
Platform::Mozaic => (3341, vec!["mozaic", "bin", "zip"]),
55+
Platform::Zoia => (3003, vec!["bin", "zip"]),
5656
};
5757

5858
// reqwest client that retries failed requests

0 commit comments

Comments
 (0)