Skip to content

Releases: fhunleth/midi_synth

v0.4.1

09 Jul 00:40
Compare
Choose a tag to compare
  • Bug fixes
    • Fix compilation issues on OSX and make OSX default audio device portaudio.
      The coreaudio default isn't working and Homebrew installs portaudio with
      fluidsynth.

v0.4.0

08 Oct 02:13
Compare
Choose a tag to compare
  • New features
    • Support specification of MIDI channels in MIDISynth.Command. This is a
      backwards incompatible API change if you're using MIDISynth.Command. The
      previous code hardcoded the channel to 0.
    • Several new commands were added to MIDISynth.Command.

Thanks to Pim Kunis for these updates!

v0.3.0

05 Aug 13:25
Compare
Choose a tag to compare

This release updates the Elixir and make code to fix many issues. The library
is the functionally the same as before, but every API call has changed. The
biggest changes are that the main module was renamed to MIDISynth and it's now
a GenServer that should be manually started or added to a supervision tree of
your choosing.

MIDI command encoders are now located in MIDISynth.Command. Please send PRs
back for any other commands you may want to use.

MIDISynth.Keyboard provides a functions for playing back simple songs.
MIDISynth forwards raw MIDI commands to libfluidsynth, so it offers a lot of
functionality. The hope is that other libraries build on this and provide the
sequencers and higher level APIs to make complex music generation possible.

v0.2.0

25 Apr 12:01
Compare
Choose a tag to compare
  • New features
    • Note velocity is supported. Unspecified velocities default to 127.

v0.1.0

27 May 21:00
Compare
Choose a tag to compare

Initial release