Releases: djipco/webmidi
Releases · djipco/webmidi
2.0.5
2.0.2
2.0.0
2.0.0-rc.11
The Output
object now properly reports its type
.
2.0.0-rc.9
State change event listeners are now properly removed when WebMidi.disable()
is called.
2.0.0-rc.8
The value parameter of the sendChannelMode()
function now defaults to 0.
2.0.0-rc.6
Prior to this version, inbound MIDI note numbers were reported two octaves lower than they should have been. Now, inbound and outbound octaves are on par.
If you are upgrading from a prior version, this may require you to compensate for this 2-octave change.
2.0.0-rc.3
The stopNote()
function can now stop all notes using the special value all
.
2.0.0-beta.2
Velocities can now also be sent and received using their raw MIDI value (0-127). To receive the raw value, just use e.rawVelocity
. To send raw value, use playNote(60, 1, velocity: 125, rawVelocity: true)
.