diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2013-10-11 14:49:11 +0200 |
|---|---|---|
| committer | Stephen Sinclair <sinclair@music.mcgill.ca> | 2013-10-11 14:49:11 +0200 |
| commit | 330e5ca540bee67d0648def2d303e9e1d366cb53 (patch) | |
| tree | de4c10fcd95454e401b944d84a6fe6250a2f959f /doc | |
| parent | 8fec3d71d441efbada609d2139ddf8ff6aa7b914 (diff) | |
Version 1.0.13
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/doxygen/Doxyfile | 2 | ||||
| -rw-r--r-- | doc/doxygen/tutorial.txt | 12 | ||||
| -rw-r--r-- | doc/release.txt | 6 |
3 files changed, 16 insertions, 4 deletions
diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index bf946e3..2b17eee 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = RtMidi # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0.12 +PROJECT_NUMBER = 1.0.13 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/doc/doxygen/tutorial.txt b/doc/doxygen/tutorial.txt index 28ba5b8..7310f7c 100644 --- a/doc/doxygen/tutorial.txt +++ b/doc/doxygen/tutorial.txt @@ -4,7 +4,7 @@ \section intro Introduction
-RtMidi is a set of C++ classes (RtMidiIn and RtMidiOut) that provides a common API (Application Programming Interface) for realtime MIDI input/output across Linux (ALSA), Macintosh OS X, SGI, and Windows (Multimedia Library) operating systems. RtMidi significantly simplifies the process of interacting with computer MIDI hardware and software. It was designed with the following goals:
+RtMidi is a set of C++ classes (RtMidiIn and RtMidiOut) that provides a common API (Application Programming Interface) for realtime MIDI input/output across Linux (ALSA & Jack), Macintosh OS X, Windows (Multimedia Library), and SGI operating systems. RtMidi significantly simplifies the process of interacting with computer MIDI hardware and software. It was designed with the following goals:
<UL>
<LI>object oriented C++ design</LI>
@@ -17,7 +17,7 @@ MIDI input and output functionality are separated into two classes, RtMidiIn and \section download Download
-Latest Release (17 February 2011): <A href="http://www.music.mcgill.ca/~gary/rtmidi/release/rtmidi-1.0.12.tar.gz">Version 1.0.12</A>
+Latest Release (7 April 2011): <A href="http://www.music.mcgill.ca/~gary/rtmidi/release/rtmidi-1.0.13.tar.gz">Version 1.0.13</A>
\section start Getting Started
@@ -349,6 +349,13 @@ In order to compile RtMidi for a specific OS and API, it is necessary to supply <TD><TT>g++ -Wall -D__LINUX_ALSASEQ__ -o midiprobe midiprobe.cpp RtMidi.cpp -lasound -lpthread</TT></TD>
</TR>
<TR>
+ <TD>Linux</TD>
+ <TD>Jack MIDI</TD>
+ <TD>__LINUX_JACK__</TD>
+ <TD><TT>jack</TT></TD>
+ <TD><TT>g++ -Wall -D__LINUX_JACK__ -o midiprobe midiprobe.cpp RtMidi.cpp -ljack</TT></TD>
+</TR>
+<TR>
<TD>Macintosh OS X</TD>
<TD>CoreMidi</TD>
<TD>__MACOSX_CORE__</TD>
@@ -418,6 +425,7 @@ Many thanks to the following people for providing bug fixes and improvements: <LI>Immanuel Litzroth (OS-X sysex fix)</LI>
<LI>Jon McCormack (Snow Leopard updates)</LI>
<LI>Axel Schmidt (client naming)</LI>
+<LI>Alexander Svetalkin (Jack MIDI)</LI>
<LI>Casey Tucker (OS-X driver information, sysex sending)</LI>
<LI>Bastiaan Verreijt (Windows sysex multi-buffer code)</LI>
</UL>
diff --git a/doc/release.txt b/doc/release.txt index 93667b9..b64ee9f 100644 --- a/doc/release.txt +++ b/doc/release.txt @@ -1,7 +1,11 @@ -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.
+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.
By Gary P. Scavone, 2003-2011.
+v1.0.13: (7 April 2011)
+- updated RtError.h to the same version as in RtAudio
+- new Jack MIDI support in Linux (thanks to Alexander Svetalkin)
+
v1.0.12: (17 February 2011)
- Windows 64-bit pointer fixes (thanks to Ward Kockelkorn)
- removed possible exceptions from getPortName() functions
|
