Skip to content

Releases: orchetect/MIDIKit

0.4.9

08 Jun 08:32
d9d6438
Compare
Choose a tag to compare

New

  • Added basic example projects, with more to come in the next release
  • Added intermediate macOS AppKit example project demonstrating endpoint selection menus
  • The MIDIKit wiki now has a Getting Started Guide as well as additional tips and troubleshooting info

Fixes and Improvements

  • InputConnection and OutputConnection : Fixed an issue where changing mode or filter properties did not immediately take effect.
  • MIDI.IO.Device: Fixed name property containing invalid data
  • MIDISystemInfo example now shows device/entity/endpoint tree to visualize object hierarchy
  • Minor improvements

0.4.8

21 Apr 07:22
7474394
Compare
Choose a tag to compare

New

  • InputConnection/OutputConnection: Refactored to use mode and filter properties
  • Various Set and Array category methods to convert endpoints to criteria collections

API Changes

MIDI.IO.Manager: .addInputConnection() and .addOutputConnection():

  • automaticallyAddNew[In/Out]puts has now become a new mode enum
  • preventAddingManaged[In/Out]puts has now been refactored into a new filter property that can filter out owned virtual endpoints as well as a set of arbitrary endpoints if needed

0.4.7

20 Apr 06:50
fba6abb
Compare
Choose a tag to compare
  • Endpoints: added displayName cached property
  • EndpointIDCriteria: added uniqueIDWithFallback case
  • Expanded custom sorted..., first(...), and filter(...) methods on object & endpoint collections
  • MIDI.IO.Manager.endpoints: Added inputsUnowned and outputsUnowned properties to return all system endpoints excluding virtual endpoints created by the Manager instance
  • Misc. minor improvements

0.4.6

18 Apr 18:23
d32662b
Compare
Choose a tag to compare
  • Updated utility methods
  • Resolved a rare crash when instancing MIDI.IO.Manager with a client name containing unusual characters

0.4.5

12 Apr 08:49
7a219c5
Compare
Choose a tag to compare
  • OutputConnection: Added automaticallyAddNewInputs and preventAddingManagedInputs (similar to InputConnection)

0.4.4

10 Apr 23:47
bf6ce74
Compare
Choose a tag to compare
  • Fixed MIDIEventPacket timestamp which was preventing some apps from receiving MIDI events

0.4.3

09 Apr 12:51
1aa3b7e
Compare
Choose a tag to compare
  • Resolved crashes while parsing MIDI 2.0 events on certain systems

0.4.2

06 Apr 01:07
a5ae3c9
Compare
Choose a tag to compare
  • Fixed NRPN/RPN LSB controller number, added basic unit tests for them
  • InputConnection/OutputConnection: Added disambiguation for add()/remove() overloads
  • Added more flexibility to event CC filters
  • Added Getting Started Guide
  • Updated docs

0.4.1

03 Mar 08:53
18ae88e
Compare
Choose a tag to compare
  • MIDI.IO.Manager
    • Added complete set of Core MIDI notifications to notificationHandler with MIDIKit data types
    • Removed systemEndpointsChanged notification case as it's redundant now

0.4.0

28 Feb 06:17
e767c38
Compare
Choose a tag to compare

Release 0.4.0 brings more versatility and stability.

Summary of New Features

  • InputConnection and OutputConnection can now have endpoints added or removed from them.
  • InputConnection can optionally aggregate all MIDI outputs in the system in order to act as a MIDI event sink that receives from all MIDI outputs in the system, and will automatically add new outputs that appear in the system during its lifecycle.
  • Added support for network MIDI sessions

Connections

  • InputConnection: Added add(outputs:), remove(outputs:), removeAllOutputs()
  • OutputConnection: Added add(inputs:), remove(inputs:), removeAllInputs()
  • Added endpoint array overloads to addInputConnection(:::) and addOutputConnection(::)
  • InputConnection: Added automaticallyAddNewOutputs property
  • InputConnection: Added preventAddingManagedOutputs property
  • Input/Output: added endpoint property

Endpoints

  • Added current() static constructor for *Endpoint sets and arrays

Network MIDI

  • Added MIDI network session support: setNetworkSession(policy:) static method in MIDI.IO

Misc

  • Manager no longer disposes of its MIDI client reference on deinit, as per Apple docs
  • Unit tests updated