release.txt 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 & JACK), and Windows (Multimedia, Kernel Streaming).
  2. By Gary P. Scavone, 2003-2014
  3. v2.1.0: (30 March 2014)
  4. - renamed RtError class to RtMidiError and embedded it in RtMidi.h (and deleted RtError.h)
  5. - fix to CoreMidi implementation to support dynamic port changes
  6. - removed global ALSA sequencer objects because they were not thread safe (Martin Koegler)
  7. - fix for ALSA timing ignore flag (Devin Anderson)
  8. - fix for ALSA incorrect use of snd_seq_create_port() function (Tobias Schlemmer)
  9. - fix for international character support in CoreMidi (Martin Finke)
  10. - fix for unicode conversion in WinMM (Dan Wilcox)
  11. - added custom error hook that allows the client to capture an RtMidi error outside of the RtMidi code (Pavel Mogilevskiy)
  12. - added RtMidi::isPortOpen function (Pavel Mogilevskiy)
  13. - updated OS-X sysex sending mechanism to use normal message sending, which fixes a problem where virtual ports didn't receive sysex messages
  14. - Windows update to avoid lockups when shutting down while sending/receiving sysex messages (ptarabbia)
  15. - OS-X fix to avoid empty messages in callbacks when ignoring sysex messages and split sysexes are received (codepainters)
  16. - ALSA openPort fix to better distinguish sender and receiver (Russell Smyth)
  17. - Windows Kernel Streaming support removed because it was uncompilable and incomplete
  18. v2.0.1: (26 July 2012)
  19. - small fixes for problems reported by Chris Arndt (scoping, preprocessor, and include)
  20. v2.0.0: (18 June 2012)
  21. - revised structure to support multiple simultaneous compiled APIs
  22. - revised ALSA client hierarchy so subsequent instances share same client (thanks to Dan Wilcox)
  23. - added beta Windows kernel streaming support (thanks to Sebastien Alaiwan)
  24. - updates to compile as a shared library or dll
  25. - updated license
  26. - various memory-leak fixes (thanks to Sebastien Alaiwan and Martin Koegler)
  27. - fix for continue sysex problem (thanks to Luc Deschenaux)
  28. - removed SGI (IRIX) support
  29. v1.0.15: (11 August 2011)
  30. - updates for wide character support in Windows
  31. - stopped using std::queue and implemented internal MIDI ring buffer (for thread safety ... thanks to Michael Behrman)
  32. - removal of the setQueueSizeLimit() function ... queue size limit now an optional arguement to constructor
  33. v1.0.14: (17 April 2011)
  34. - bug fix to Jack MIDI support (thanks to Alexander Svetalkin and Pedro Lopez-Cabanillas)
  35. v1.0.13: (7 April 2011)
  36. - updated RtError.h to the same version as in RtAudio
  37. - new Jack MIDI support in Linux (thanks to Alexander Svetalkin)
  38. v1.0.12: (17 February 2011)
  39. - Windows 64-bit pointer fixes (thanks to Ward Kockelkorn)
  40. - removed possible exceptions from getPortName() functions
  41. - changed sysex sends in OS-X to use MIDISendSysex() function (thanks to Casey Tucker)
  42. - bug fixes to time code parsing in OS-X and ALSA (thanks to Greg)
  43. - added MSW project file to build as library (into lib/ directory ... thanks to Jason Champion)
  44. v1.0.11: (29 January 2010)
  45. - added CoreServices/CoreServices.h include for OS-X 10.6 and gcc4.2 compile (thanks to Jon McCormack)
  46. - various increment optimizations (thanks to Paul Dean)
  47. - fixed incorrectly located snd_seq_close() function in ALSA API (thanks to Pedro Lopez-Cabanillas)
  48. - updates to Windows sysex code to better deal with possible delivery problems (thanks to Bastiaan Verreijt)
  49. v1.0.10: (3 June 2009)
  50. - fix adding timestamp to OS-X sendMessage() function (thanks to John Dey)
  51. v1.0.9: (30 April 2009)
  52. - 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.
  53. - updated functionality in OSX_CORE for getting driver name (thanks to Casey Tucker)
  54. v1.0.8: (29 January 2009)
  55. - bug fixes for concatenating segmented sysex messages in ALSA (thanks to Christoph Eckert)
  56. - update to ALSA sequencer port enumeration (thanks to Pedro Lopez-Cabonillas)
  57. - bug fixes for concatenating segmented sysex messages in OS-X (thanks to Emmanuel Litzroth)
  58. - added functionality for naming clients (thanks to Pedro Lopez-Cabonillas and Axel Schmidt)
  59. - bug fix in Windows when receiving sysex messages if the ignore flag was set (thanks to Pedro Lopez-Cabonillas)
  60. v1.0.7: (7 December 2007)
  61. - configure and Makefile changes for MinGW
  62. - renamed midiinfo.cpp to midiprobe.cpp and updated VC++ project/workspace
  63. v1.0.6: (9 March 2006)
  64. - bug fix for timestamp problem in ALSA (thanks to Pedro Lopez-Cabanillas)
  65. v1.0.5: (18 November 2005)
  66. - added optional port name to openVirtualPort() functions
  67. - fixed UNICODE problem in Windows getting device names (thanks Eduardo Coutinho!).
  68. - fixed bug in Windows with respect to getting Sysex data (thanks Jean-Baptiste Berruchon!)
  69. v1.0.4: (14 October 2005)
  70. - added check for status byte == 0xF8 if ignoring timing messages
  71. - changed pthread attribute to SCHED_OTHER (from SCHED_RR) to avoid thread problem when realtime cababilities are not enabled.
  72. - now using ALSA sequencer time stamp information (thanks to Pedro Lopez-Cabanillas)
  73. - fixed memory leak in ALSA implementation
  74. - now concatenate segmented sysex messages in ALSA
  75. v1.0.3: (22 November 2004)
  76. - added common pure virtual functions to RtMidi abstract base class
  77. v1.0.2: (21 September 2004)
  78. - added warning messages to openVirtualPort() functions in Windows and Irix (where it can't be implemented)
  79. v1.0.1: (20 September 2004)
  80. - changed ALSA preprocessor definition to __LINUX_ALSASEQ__
  81. v1.0.0: (17 September 2004)
  82. - first release of new independent class with both input and output functionality