flutter_midi_command_darwin 1.1.2 copy "flutter_midi_command_darwin: ^1.1.2" to clipboard
flutter_midi_command_darwin: ^1.1.2 copied to clipboard

PlatformiOSmacOS

Darwin (iOS/macOS) serial MIDI wrapper for flutter_midi_command.

1.1.2 #

  • Bump "flutter_midi_command_darwin" to 1.1.2 and update the platform interface dependency constraint to ^1.1.2.

1.1.1 #

  • Bump "flutter_midi_command_darwin" to 1.1.1 and update the platform interface dependency constraint to ^1.1.1.

1.1.0 #

  • FIX: read every packet of a coalesced MIDIPacketList from the original list memory. The shared implementation copied only the first MIDIPacket — a fixed 256-byte struct — then walked MIDIPacketNext over that copy, so any packet after the first came from unrelated memory and anything longer than 256 bytes was truncated. Small coalesced packets appeared to work because the struct copy happened to carry them along, so this surfaced only with large SysEx or more than 256 bytes of coalesced data. Virtual devices used the broken path; native devices already had a correct override, which is now shared rather than duplicated.
  • BREAKING (virtual devices only): timestamps from virtual devices are now converted to nanoseconds via mach_timebase_info, matching what native devices already reported, instead of being passed through as raw mach ticks.
  • Bump "flutter_midi_command_darwin" to 1.1.0 and update the platform interface dependency constraint to ^1.1.0.

1.0.9 #

  • Bump "flutter_midi_command_darwin" to 1.0.9 and update the platform interface dependency constraint.

1.0.8 #

  • FIX: report CoreMIDI destinations as inputPorts and sources as outputPorts so port direction matches the public device-owned API contract (#164).
  • Update the platform interface dependency constraint to ^1.0.8.

1.0.7 #

  • Bump "flutter_midi_command_darwin" to 1.0.7 and update the platform interface dependency constraint.

1.0.6 #

  • Bump "flutter_midi_command_darwin" to 1.0.6.

1.0.5 #

  • Bump "flutter_midi_command_darwin" to 1.0.5.

1.0.4 #

  • FIX(ci): track pubspec_overrides.yaml so melos bootstrap works on clean checkouts.

1.0.3 #

  • Update a dependency to the latest release.

1.0.2 #

  • N

1.0.1 #

  • Update a dependency to the latest release.

1.0.0 #

  • Initial federated Darwin (iOS/macOS) implementation release in monorepo layout.
  • Host MIDI API contracts migrated to generated Pigeon interfaces.