Skip to content

Commit

Permalink
fix: update minimum fw version & add version warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GriffinSauce committed Jul 2, 2024
1 parent 4c795cd commit 623073d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
> Easily interact with Pirate Midi devices over USB from JavaScript
> [!WARNING]
> The device API will be overhauled in the soon-to-be-released Bridge OS 2.0. This package will **not** work with 2.x until API specs are published and significant changes are made to this package.
> The device API was overhauled in Bridge OS 2.x - Use `pirate-midi-usb@2.x` to interact with devices on Bridge OS 1.x (or just upgrade, it's great)
<!-- vscode-markdown-toc -->
* [Install](#Install)
Expand Down
2 changes: 1 addition & 1 deletion src/PirateMidiDevice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { WebSerialPort } from './serial/WebSerialPort';
import { EventEmitter } from 'events';
import { DevicePortMock } from './mock/DevicePortMock';

export const MINIMUM_FIRMWARE_VERSION = '1.1.3';
export const MINIMUM_FIRMWARE_VERSION = '2.0.0';

export class PirateMidiDevice extends EventEmitter {
deviceInfo?: DeviceInfo;
Expand Down

0 comments on commit 623073d

Please sign in to comment.