release.txt 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. RtMidi - a set of C++ classes that provides a common API for realtime MIDI input/output across Linux (ALSA & Jack), Macintosh OS X (CoreMidi), Windows (Multimedia), and SGI operating systems.
  2. By Gary P. Scavone, 2003-2011.
  3. v1.0.15: (11 August 2011)
  4. - updates for wide character support in Windows
  5. - stopped using std::queue and implemented internal MIDI ring buffer (for thread safety ... thanks to Michael Behrman)
  6. - removal of the setQueueSizeLimit() function ... queue size limit now an optional arguement to constructor
  7. v1.0.14: (17 April 2011)
  8. - bug fix to Jack MIDI support (thanks to Alexander Svetalkin and Pedro Lopez-Cabanillas)
  9. v1.0.13: (7 April 2011)
  10. - updated RtError.h to the same version as in RtAudio
  11. - new Jack MIDI support in Linux (thanks to Alexander Svetalkin)
  12. v1.0.12: (17 February 2011)
  13. - Windows 64-bit pointer fixes (thanks to Ward Kockelkorn)
  14. - removed possible exceptions from getPortName() functions
  15. - changed sysex sends in OS-X to use MIDISendSysex() function (thanks to Casey Tucker)
  16. - bug fixes to time code parsing in OS-X and ALSA (thanks to Greg)
  17. - added MSW project file to build as library (into lib/ directory ... thanks to Jason Champion)
  18. v1.0.11: (29 January 2010)
  19. - added CoreServices/CoreServices.h include for OS-X 10.6 and gcc4.2 compile (thanks to Jon McCormack)
  20. - various increment optimizations (thanks to Paul Dean)
  21. - fixed incorrectly located snd_seq_close() function in ALSA API (thanks to Pedro Lopez-Cabanillas)
  22. - updates to Windows sysex code to better deal with possible delivery problems (thanks to Bastiaan Verreijt)
  23. v1.0.10: (3 June 2009)
  24. - fix adding timestamp to OS-X sendMessage() function (thanks to John Dey)
  25. v1.0.9: (30 April 2009)
  26. - 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.
  27. - updated functionality in OSX_CORE for getting driver name (thanks to Casey Tucker)
  28. v1.0.8: (29 January 2009)
  29. - bug fixes for concatenating segmented sysex messages in ALSA (thanks to Christoph Eckert)
  30. - update to ALSA sequencer port enumeration (thanks to Pedro Lopez-Cabonillas)
  31. - bug fixes for concatenating segmented sysex messages in OS-X (thanks to Emmanuel Litzroth)
  32. - added functionality for naming clients (thanks to Pedro Lopez-Cabonillas and Axel Schmidt)
  33. - bug fix in Windows when receiving sysex messages if the ignore flag was set (thanks to Pedro Lopez-Cabonillas)
  34. v1.0.7: (7 December 2007)
  35. - configure and Makefile changes for MinGW
  36. - renamed midiinfo.cpp to midiprobe.cpp and updated VC++ project/workspace
  37. v1.0.6: (9 March 2006)
  38. - bug fix for timestamp problem in ALSA (thanks to Pedro Lopez-Cabanillas)
  39. v1.0.5: (18 November 2005)
  40. - added optional port name to openVirtualPort() functions
  41. - fixed UNICODE problem in Windows getting device names (thanks Eduardo Coutinho!).
  42. - fixed bug in Windows with respect to getting Sysex data (thanks Jean-Baptiste Berruchon!)
  43. v1.0.4: (14 October 2005)
  44. - added check for status byte == 0xF8 if ignoring timing messages
  45. - changed pthread attribute to SCHED_OTHER (from SCHED_RR) to avoid thread problem when realtime cababilities are not enabled.
  46. - now using ALSA sequencer time stamp information (thanks to Pedro Lopez-Cabanillas)
  47. - fixed memory leak in ALSA implementation
  48. - now concatenate segmented sysex messages in ALSA
  49. v1.0.3: (22 November 2004)
  50. - added common pure virtual functions to RtMidi abstract base class
  51. v1.0.2: (21 September 2004)
  52. - added warning messages to openVirtualPort() functions in Windows and Irix (where it can't be implemented)
  53. v1.0.1: (20 September 2004)
  54. - changed ALSA preprocessor definition to __LINUX_ALSASEQ__
  55. v1.0.0: (17 September 2004)
  56. - first release of new independent class with both input and output functionality