Skip to content

Commit b63dbbb

Browse files
authored
Merge pull request #3 from joebowbeer/eventide-h90
feat: eventide h90 programs (.pgm90)
2 parents d6516e1 + b14ab94 commit b63dbbb

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

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

3-
Supports Meris Enzo X, Meris LVX, and Meris MercuryX.
3+
Supports Eventide H90, Meris Enzo X, Meris LVX, and Meris MercuryX.
44

55
```shell
66
cargo build && cargo test

src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ async fn main() -> Result<()> {
4848
);
4949

5050
let (platform, extension) = match args.platform {
51+
Platform::EventideH90 => (8271, "pgm90"), // extensions: pgm90, lst90, preset90
5152
Platform::MerisEnzoX => (10559, "syx"),
5253
Platform::MerisLvx => (8008, "syx"),
5354
Platform::MerisMercuryX => (9190, "syx"),
@@ -115,6 +116,8 @@ async fn main() -> Result<()> {
115116
#[derive(clap::ValueEnum, Clone, Debug, Default, PartialEq, Serialize)]
116117
#[serde(rename_all = "kebab-case")]
117118
enum Platform {
119+
/// Eventide H90
120+
EventideH90,
118121
/// Meris Enzo X
119122
MerisEnzoX,
120123
/// Meris LVX

0 commit comments

Comments
 (0)