Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Download Meris patches from patchstorage.
Download Eventide and Meris patches from patchstorage.

Supports Meris Enzo X, Meris LVX, and Meris MercuryX.
Supports Eventide H90, Meris Enzo X, Meris LVX, and Meris MercuryX.

```shell
cargo build && cargo test
Expand Down
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ async fn main() -> Result<()> {
);

let (platform, extension) = match args.platform {
Platform::EventideH90 => (8271, "pgm90"), // extensions: pgm90, lst90, preset90
Platform::MerisEnzoX => (10559, "syx"),
Platform::MerisLvx => (8008, "syx"),
Platform::MerisMercuryX => (9190, "syx"),
Expand Down Expand Up @@ -115,6 +116,8 @@ async fn main() -> Result<()> {
#[derive(clap::ValueEnum, Clone, Debug, Default, PartialEq, Serialize)]
#[serde(rename_all = "kebab-case")]
enum Platform {
/// Eventide H90
EventideH90,
/// Meris Enzo X
MerisEnzoX,
/// Meris LVX
Expand Down