release.txt 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. RtMidi - a set of C++ classes that provides a common API for realtime MIDI input/output across Linux (ALSA), SGI, Macintosh OS X (CoreMidi), and Windows (Multimedia) operating systems.
  2. By Gary P. Scavone, 2003-2009.
  3. v1.0.10: (3 June 2009)
  4. - fix adding timestamp to OS-X sendMessage() function (thanks to John Dey)
  5. v1.0.9: (30 April 2009)
  6. - added #ifdef AVOID_TIMESTAMPING to conditionally compile support for event timestamping of ALSA sequencer events. This is useful for programs not needing timestamps, saving valuable system resources.
  7. - updated functionality in OSX_CORE for getting driver name (thanks to Casey Tucker)
  8. v1.0.8: (29 January 2009)
  9. - bug fixes for concatenating segmented sysex messages in ALSA (thanks to Christoph Eckert)
  10. - update to ALSA sequencer port enumeration (thanks to Pedro Lopez-Cabonillas)
  11. - bug fixes for concatenating segmented sysex messages in OS-X (thanks to Emmanuel Litzroth)
  12. - added functionality for naming clients (thanks to Pedro Lopez-Cabonillas and Axel Schmidt)
  13. - bug fix in Windows when receiving sysex messages if the ignore flag was set (thanks to Pedro Lopez-Cabonillas)
  14. v1.0.7: (7 December 2007)
  15. - configure and Makefile changes for MinGW
  16. - renamed midiinfo.cpp to midiprobe.cpp and updated VC++ project/workspace
  17. v1.0.6: (9 March 2006)
  18. - bug fix for timestamp problem in ALSA (thanks to Pedro Lopez-Cabanillas)
  19. v1.0.5: (18 November 2005)
  20. - added optional port name to openVirtualPort() functions
  21. - fixed UNICODE problem in Windows getting device names (thanks Eduardo Coutinho!).
  22. - fixed bug in Windows with respect to getting Sysex data (thanks Jean-Baptiste Berruchon!)
  23. v1.0.4: (14 October 2005)
  24. - added check for status byte == 0xF8 if ignoring timing messages
  25. - changed pthread attribute to SCHED_OTHER (from SCHED_RR) to avoid thread problem when realtime cababilities are not enabled.
  26. - now using ALSA sequencer time stamp information (thanks to Pedro Lopez-Cabanillas)
  27. - fixed memory leak in ALSA implementation
  28. - now concatenate segmented sysex messages in ALSA
  29. v1.0.3: (22 November 2004)
  30. - added common pure virtual functions to RtMidi abstract base class
  31. v1.0.2: (21 September 2004)
  32. - added warning messages to openVirtualPort() functions in Windows and Irix (where it can't be implemented)
  33. v1.0.1: (20 September 2004)
  34. - changed ALSA preprocessor definition to __LINUX_ALSASEQ__
  35. v1.0.0: (17 September 2004)
  36. - first release of new independent class with both input and output functionality