git-svn-id: svn+ssh://jackaudio.org/trunk/jack@4467 0c269be4-1314-0410-8aa9-9f06e86f4224tags/0.121.0
| @@ -61,8 +61,8 @@ dnl micro version = incremented when implementation-only | |||||
| dnl changes are made | dnl changes are made | ||||
| dnl --- | dnl --- | ||||
| JACK_MAJOR_VERSION=0 | JACK_MAJOR_VERSION=0 | ||||
| JACK_MINOR_VERSION=120 | |||||
| JACK_MICRO_VERSION=2 | |||||
| JACK_MINOR_VERSION=121 | |||||
| JACK_MICRO_VERSION=0 | |||||
| dnl --- | dnl --- | ||||
| dnl HOWTO: updating the jack protocol version | dnl HOWTO: updating the jack protocol version | ||||
| @@ -16,7 +16,8 @@ DOXSOURCES=mainpage.dox transport.dox porting.dox fsm.png fsm.eps \ | |||||
| ../jack/types.h \ | ../jack/types.h \ | ||||
| ../jack/midiport.h \ | ../jack/midiport.h \ | ||||
| ../jack/session.h \ | ../jack/session.h \ | ||||
| ../jack/weakjack.h | |||||
| ../jack/weakjack.h \ | |||||
| ../jack/control.h | |||||
| EXTRA_DIST=mainpage.dox transport.dox fsm.png fsm.eps porting.dox | EXTRA_DIST=mainpage.dox transport.dox fsm.png fsm.eps porting.dox | ||||
| @@ -98,6 +98,7 @@ little clearer: | |||||
| - @ref MIDIAPI | - @ref MIDIAPI | ||||
| - @ref SessionClientFunctions | - @ref SessionClientFunctions | ||||
| - @ref WeakLinkage | - @ref WeakLinkage | ||||
| - @ref ControlAPI | |||||
| The full API is described in: | The full API is described in: | ||||
| @@ -120,6 +121,8 @@ The full API is described in: | |||||
| and writing of MIDI data to a port | and writing of MIDI data to a port | ||||
| - @ref session.h "<jack/session.h>" functions that form the JACK | - @ref session.h "<jack/session.h>" functions that form the JACK | ||||
| session API | session API | ||||
| - @ref control.h "<jack/control.h>" the API for starting and | |||||
| controlling a JACK server | |||||
| In addition, the tools directory provides numerous examples | In addition, the tools directory provides numerous examples | ||||
| of simple JACK clients that nevertheless use the API to do something | of simple JACK clients that nevertheless use the API to do something | ||||
| @@ -528,6 +528,7 @@ INPUT = @top_srcdir@/doc/mainpage.dox \ | |||||
| @top_srcdir@/jack/midiport.h \ | @top_srcdir@/jack/midiport.h \ | ||||
| @top_srcdir@/jack/session.h \ | @top_srcdir@/jack/session.h \ | ||||
| @top_srcdir@/jack/weakjack.h \ | @top_srcdir@/jack/weakjack.h \ | ||||
| @top_srcdir@/jack/control.h \ | |||||
| # This tag can be used to specify the character encoding of the source files | # This tag can be used to specify the character encoding of the source files | ||||
| # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is | # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is | ||||
| @@ -82,7 +82,7 @@ extern "C" { | |||||
| #endif | #endif | ||||
| /** | /** | ||||
| * @defgroup ServerControl Controling the server | |||||
| * @defgroup ControlAPI the API for starting and controlling a JACK server | |||||
| * @{ | * @{ | ||||
| */ | */ | ||||