Skip to content

Releases: orchetect/MIDIKit

0.7.1

27 Oct 01:40
5fb631b
Compare
Choose a tag to compare

Improvements for Receiving MIDI Events

  • Added a new .eventsWithMetadata { } MIDI event receive handler that includes MIDI packet timestamp and the source endpoint

Improvements for Object Properties

  • MIDI endpoints, entities and devices now have unified property names
  • MIDI endpoints, entities and devices have additional contextual properties (ie: endpoints offer an entity and device property)
  • MIDI event filters are now more robust

0.7.0

12 Oct 05:34
17ecbb5
Compare
Choose a tag to compare

What's New

HUI

  • HUI objects and value types have been substantially refactored and improved, and various issues resolved. (#136 / #139)
  • A new HUIHost object is now available for HUI host applications to manage one or more HUIHostBank remote HUI devices. (#136 / #139)

Examples

  • Bluetooth MIDI example projects have been updated to demonstrate configuring your iOS app as a local Bluetooth MIDI peripheral which other devices can connect to. (#141 / #142)
  • HUITest example application now demonstrates a simple HUI host and the HUI surface UI has been improved with functioning faders, V-Pots and jog wheel. (#139)

0.6.1

02 Sep 02:56
80baa7a
Compare
Choose a tag to compare
  • Resolved: Under certain conditions when building or archiving a release build, the Swift compiler was throwing build errors related to synthesizing protocol conformance. The issue should now be resolved.

0.6.0

30 Aug 05:11
829c183
Compare
Choose a tag to compare

MIDIKit 0.6.0

What's New

  • Library-wide API clarification and more consolidated type names.

  • Curated documentation:

    • Written with DocC

    • Includes all the getting started guides previously found in the Wiki and more

    • Easy to navigate directly within Xcode using the Build Documentation menu command, or browsable online

      (Note: Xcode 14 builds docc more reliably than Xcode 13 but you can always browse the online docs)

  • MIDIKit is now a mono-repo: All extension repos (SMF, Sync, ControlSurfaces) are now incorporated as package products within MIDIKit, and the external repos are now deprecated. All of MIDIKit can be imported with a single import, or individual targets can be imported if only certain functionality is required. See the documentation for details.

  • Refactors and improvements

Note: MIDIKit 0.6.0 contains substantial API changes from 0.5.x, and now requires Swift 5.5 / Xcode 13.0+.

0.5.2

25 Jul 05:18
Compare
Choose a tag to compare

New Features

  • MIDI.Event.sysEx7(rawHexString:) static initializer
    • capable of parsing a string of hex byte values (ie: "F7 01 02 03 F0" or "f7010203f0")
  • MIDI.Event.SysEx7 instance: Added .midi1RawHexString() method
    • returns the raw message bytes as a string of hex values

Minor Changes

  • MIDI.Event.noteManagement(): Added note: parameter label for consistency

0.5.1

02 Jul 01:24
Compare
Choose a tag to compare
  • Added MIDI 2.0 utility messages
  • MIDI.Byte.Pair: Added UInt16 interop
  • Enabled build & test on tvOS and watchOS (#124)
  • Updated examples and unit tests for API changes

0.5.0

25 Jun 04:48
a53afcc
Compare
Choose a tag to compare

Incremental API Changes

Some API changes and namespace adjustments have been made to improve logical organization in the library. Also, some quality-of-life improvements come from simplified unique ID handling.

  • MIDI.IO.UniqueID is now a unified global Int32 typealias which vastly simplifies dealing with / storing endpoint IDs
  • MIDI.Event: All event types that reference MIDI note numbers now use MIDI.Note struct instead of raw number
  • MIDI.Note: Added note name style (Yamaha, Roland, Cakewalk) to determine octave numbering in note name strings
  • Misc internal methods renamed for consistency
  • Missing inline docs have been added

0.4.12

20 Jun 05:51
Compare
Choose a tag to compare

API Updates

  • Changed MIDI.Event(sysEx7RawBytes:) to MIDI.Event.sysEx7(rawBytes:) static func
  • Changed MIDI.Event(sysEx8RawBytes:) to MIDI.Event.sysEx8(rawBytes:) static func
  • Refactored NRPN API to be consistent with RPN API

Misc

  • Minor README updates
  • Updated CI to build UB2 (both macOS x86 and arm64)

0.4.11

19 Jun 22:13
bb49287
Compare
Choose a tag to compare

Incremental Improvements Update

MIDI Events

  • .noteCC event (MIDI 2.0 only): Switched value to enum case to be consistent with other events
  • RPN Tuning Program Change & Tuning Bank Select now correctly carry 7-bit values
  • Added 3D Sound Controller RPN types

MIDI Thru Connections

  • Addressed Core MDI bug with MIDI Thru connections; now errors out on macOS Big Sur or later
  • MIDI.IO.ThruConnection refactors
  • MIDI.IO.Manager: Added removeAllUnmanagedPersistentThruConnections(ownerID:)

Examples

  • Added EventParsing examples
  • Misc improvements/refactors to examples

Misc

  • Removed remaining TODO compiler warnings
  • Minor inline docs updates
  • Updated unit tests
  • Reworked GitHub CI pipeline

0.4.10

13 Jun 08:52
e357b2e
Compare
Choose a tag to compare

Important Bugfix Release

  • Fixed MIDI packet unpacking on macOS Mojave and earlier (macOS Catalina and later are unaffected)
  • .send(events:): Improved reliability of sending SysEx in a multi-event array when using old Core MIDI API