annotate src/portaudio_20140130/bindings/cpp/ChangeLog @ 124:e3d5853d5918

Current stable PortAudio source
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 18 Oct 2016 13:11:05 +0100
parents
children
rev   line source
cannam@124 1 Note: Because PortAudioCpp is now in the main PortAudio SVN repository, having these per-release changelogs probably doesn't make much sense anymore. Perhaps it's better to just note mayor changes by date from now on.
cannam@124 2
cannam@124 3 PortAudioCpp v19 revision 16 06/05/22:
cannam@124 4
cannam@124 5 mblaauw:
cannam@124 6 - Added up-to-date MSVC 6.0 projects created by David Moore. Besides MSVC 6.0 users, MSVC 7.0 users may use these projects and automatically convert them to MSVC 7.0 projects.
cannam@124 7 - Changed the code and projects (MSVC 7.1 only) to be up-to-date with PortAudio's new directory structure.
cannam@124 8 - Added equivalents of the PaAsio_GetInputChannelName() and PaAsio_GetOutputChannelName() functions to the AsioDeviceAdapter wrapper-class (missing functions pointed out by David Moore).
cannam@124 9 - Added code to PortAudio's main SVN repository.
cannam@124 10
cannam@124 11 PortAudioCpp v19 revision 15 (unknown release date):
cannam@124 12
cannam@124 13 mblaauw:
cannam@124 14 - Changed some exception handling code in HostApi's constructor.
cannam@124 15 - Added accessors to PortAudio PaStream from PortAudioCpp Stream (their absense being pointed out
cannam@124 16 by Tom Jordan).
cannam@124 17 - Fixed a bug/typo in MemFunToCallbackInterfaceAdapter::init() thanks to Fredrik Viklund.
cannam@124 18 - Fixed issue with concrete Stream classes possibly throwing an exception and fixed documentation w.r.t. this.
cannam@124 19 - Moved files to portaudio/binding/cpp/. Made new msvc 7.1 projects to reflect the change and removed msvc 6.0
cannam@124 20 and 7.0 projects (because I can no longer maintain them myself). Gnu projects will probably need updating.
cannam@124 21
cannam@124 22 PortAudioCpp v19 revision 14 03/10/24:
cannam@124 23
cannam@124 24 mblaauw:
cannam@124 25 - Fixed some error handling bugs in Stream and System (pointed out by Tom Jordan).
cannam@124 26 - Updated documentation a little (main page).
cannam@124 27 - Fixed order of members so initializer list was in the right order in
cannam@124 28 StreamParameters (pointed out by Ludwig Schwardt).
cannam@124 29 - Added new lines at EOF's (as indicated by Ludwig Schwardt).
cannam@124 30
cannam@124 31 PortAudioCpp v19 revision 13 03/10/19:
cannam@124 32
cannam@124 33 lschwardt:
cannam@124 34 - Added build files for GNU/Linux.
cannam@124 35 - Fixed bug in Exception where the inherited what() member function (and destructor) had looser
cannam@124 36 exception specification (namely no exception specification, i.e. could throw anything) than
cannam@124 37 the std::exception base class's what() member function (which had throw(), i.e. no-throw guarantee).
cannam@124 38 - Changed the iterators so that they have a set of public typedefs instead of deriving the C++ standard
cannam@124 39 library std::iterator<> struct. G++ 2.95 doesn't support std::exception<> and composition-by-aggregation
cannam@124 40 is prefered over composition-by-inheritance in this case.
cannam@124 41 - Changed some minor things to avoid G++ warning messages.
cannam@124 42
cannam@124 43 mblaauw:
cannam@124 44 - Renamed this file (/WHATSNEW.txt) to /CHANGELOG.
cannam@124 45 - Renamed /PA_ISSUES.txt to /PA_ISSUES.
cannam@124 46 - Added /INSTALL file with some build info for GNU/Linux and VC6.
cannam@124 47 - Added MSVC 6.0 projects for building PortAudioCpp as a staticly or dynamically linkable library.
cannam@124 48 - Moved build files to /build/(gnu/ or vc6/).
cannam@124 49 - Moved Doxygen configuration files to /doc/ and output to /doc/api_reference/.
cannam@124 50 - Added a /doc/README with some info how to generate Doxygen documentation.
cannam@124 51
cannam@124 52 PortAudioCpp v19 revision 12 03/09/02:
cannam@124 53
cannam@124 54 mblaauw:
cannam@124 55 - Updated code to reflect changes on V19-devel CVS branch.
cannam@124 56 - Fixed some typos in the documentation.
cannam@124 57
cannam@124 58 PortAudioCpp v19 revision 11 03/07/31:
cannam@124 59
cannam@124 60 mblaauw:
cannam@124 61 - Renamed SingleDirecionStreamParameters to DirectionSpecificStreamParameters.
cannam@124 62 - Implemented BlockingStream.
cannam@124 63 - Updated code to reflect recent changes to PortAudio V19-devel.
cannam@124 64 - Fixed a potential memory leak when an exception was thrown in the HostApi
cannam@124 65 constructor.
cannam@124 66 - Renamed ``Latency'' to ``BufferSize'' in AsioDeviceAdapter.
cannam@124 67 - Updated class documentation.
cannam@124 68
cannam@124 69 PortAudioCpp v19 revision 10 03/07/18:
cannam@124 70
cannam@124 71 mblaauw:
cannam@124 72 - SingleDirectionStreamParameters now has a (static) null() method.
cannam@124 73 - StreamParameters uses references for the direction-specific stream parameters
cannam@124 74 instead of pointers (use null() method (above) instead of NULL).
cannam@124 75 - StreamParameters and SingleDirectionStreamParameters must now be fully specified
cannam@124 76 and now default values are used (because this was not very useful in general and
cannam@124 77 only made things more complex).
cannam@124 78 - Updated documentation.
cannam@124 79
cannam@124 80 PortAudioCpp v19 revision 09 03/06/25:
cannam@124 81
cannam@124 82 mblaauw:
cannam@124 83 - Changed some things in SingleDirectionStreamParameters to ease it's usage.
cannam@124 84 - Placed all SingleDirectionStreamParameters stuff into a separate file.
cannam@124 85 + Totally redid the callback stuff, now it's less ackward and supports C++ functions.
cannam@124 86
cannam@124 87 PortAudioCpp v19 revision 08 03/06/20:
cannam@124 88
cannam@124 89 mblaauw:
cannam@124 90 - Made deconstructors for Device and HostApi private.
cannam@124 91 + Added a AsioDeviceWrapper host api specific device extension class.
cannam@124 92 - Refactored Exception into a Exception base class and PaException and PaCppException
cannam@124 93 derived classes.
cannam@124 94 - Added ASIO specific device info to the devs.cxx example.
cannam@124 95 - Fixed a bug in System::hostApiCount() and System::defaultHostApi().
cannam@124 96 + Moved Device::null to System::nullDevice.
cannam@124 97 - Fixed some bugs in Device and System.
cannam@124 98
cannam@124 99 PortAudioCpp v19 revision 07 03/06/08:
cannam@124 100
cannam@124 101 mblaauw:
cannam@124 102 - Updated some doxy comments.
cannam@124 103 + Renamed CbXyz to CallbackXyz.
cannam@124 104 + Renamed all ``configurations'' to ``parameters''.
cannam@124 105 + Renamed HalfDuplexStreamConfiguration to SingleDirectionStreamConfiguration.
cannam@124 106 - Renamed SingleDirectionStreamParameters::streamParameters() to
cannam@124 107 SingleDirectionStreamParameters::paSteamParameters.
cannam@124 108 - Added a non-constant version of SingleDirectionStreamParameters::paStreamParameters().
cannam@124 109 - A few improvements to SingleDirectionStreamParameters.
cannam@124 110 - Allowed AutoSystem to be created without initializing the System singleton
cannam@124 111 (using a ctor flag).
cannam@124 112 - Added a BlockingStream class (not implemented for now).
cannam@124 113 - Fixed many bugs in the implementation of the iterators.
cannam@124 114 - Fixed a bug in Device::operator==().
cannam@124 115 + Added a C++ version of the patest_sine.c test/example.
cannam@124 116 - Added a ctor for StreamParameters for a default half-duplex stream.
cannam@124 117 - Added SingleDirectionStreamParameters::setDevice() and setNumChannels().
cannam@124 118 - Renamed System::numHostApis() to System::hostApiCount().
cannam@124 119 + Rewrote the iterators and related classes. They are now fully STL compliant. The System now
cannam@124 120 has a static array of all HostApis and all Devices. Only the System can create HostApis and
cannam@124 121 Devices and they are non-copyable now. All HostApis and Devices are now passed by-reference.
cannam@124 122 - Renamed (System::) getVersion() to version() and getVersionText() to versionText().
cannam@124 123 - Renamed (Device::) numXyzChannels() to maxXyzChannels().
cannam@124 124 - Changed some stuff in StreamParameters.
cannam@124 125 + Added a C++ version of the patest_devs.c test/example.
cannam@124 126
cannam@124 127 PortAudioCpp v19 revision 06 03/06/04:
cannam@124 128
cannam@124 129 mblaauw:
cannam@124 130 + Added this file to the project (roughly, a `+' denotes a major change, a `-' a minor change).
cannam@124 131 - Added System::deviceByIndex(), useful when a Device's index is stored for instance.
cannam@124 132 - Renamed System::hostApiFromTypeId() to System::hostApiByTypeId().
cannam@124 133 - Updated and added some Doxygen documentation.
cannam@124 134 - Made Stream::usedIntputLatency(), Stream::usedOutputLatency() and
cannam@124 135 Stream::usedSampleRate() throw an paInternalError equivalent exception instead of paBadStreamPtr.
cannam@124 136 - Changed exception handling in Stream::open() functions. They now follow the PA error handling
cannam@124 137 mechanism better and a couple of bugs regarding ownership of objects were fixed.
cannam@124 138 - Renamed Device::isDefaultXyzDevice() to Device::isSystemDefaultXyzDevice().
cannam@124 139 - Added Device::isHostApiDefaultXyzDevice().
cannam@124 140 - Added StreamConfiguration::unsetFlag().
cannam@124 141 - Removed CUSTOM from SampleDataFormat.
cannam@124 142 - System::hostApiByTypeId() now throws an paInternalError if the type id was out-of-range; this
cannam@124 143 is a temporary work-around (see comments).
cannam@124 144 - Changed CbInterface to use paCallbackFun() instead of operator()().
cannam@124 145 - Renamed ``object'' to ``instance'' in CbMemFunAdapter.hxx.
cannam@124 146 - Added StreamConfiguration::setXyzHostApiSpecificSampleFormat().
cannam@124 147 - Added StreamConfiguration::isXyzSampleFormatHostApiSpecific().
cannam@124 148 - Changed error handling in System::terminate(), it can now throw an Exception.
cannam@124 149 - Added error handling in System::defaultHostApi().
cannam@124 150 - Added error handling in System::hostApisEnd().
cannam@124 151 - Changed some (but probably not all) C casts to C++ casts to avoid confusion with a
cannam@124 152 certain Python person.
cannam@124 153 - Renamed RaiiSystem to AutoSystem (class and file) as this is a come common convention.
cannam@124 154 - Renamed System::numDevices() to System::deviceCount() to be more compatible with PortAudio
cannam@124 155 (although PortAudio uses Pa_CountDevices() instead, see comment).
cannam@124 156 - Renamed HostApi::numDevices() to HostApi::deviceCount().
cannam@124 157 - Changed INC_ to INCLUDED_ in the header multiple include guards.
cannam@124 158 - Changed the order of functions in the StreamConfiguration class' header.
cannam@124 159 - Written some more info in PortAudioCpp.hxx (Doxygen).
cannam@124 160 - Added CallbackStream.hxx and CallbackStream.cxx files.
cannam@124 161 + Refactored StreamConfiguration to remove the duplication which was there. There is now a
cannam@124 162 HalfDuplexStreamConfiguration class. Also made some improvements to these classes while
cannam@124 163 doing the refactoring.
cannam@124 164 + Moved all code files to source/portaudiocpp/ and changed includes.
cannam@124 165 + Moved all header files to include/portaudiocpp/ to easy a binary build if needed. The project
cannam@124 166 must be set to have .../include/ as a path to look for includes.
cannam@124 167 + Refactored the Stream class into a Stream base class and a CallbackStream derived class.
cannam@124 168 - Renamed Stream::usingXyz() to Stream::xyz().
cannam@124 169 - Updated some doxy comments.
cannam@124 170 - Changed ``using namespace portaudio'' in .cxx files to ``namespace portaudio { ... }''.
cannam@124 171
cannam@124 172 PortAudioCpp v19 revision 05 03/04/09:
cannam@124 173
cannam@124 174 mblaauw:
cannam@124 175 - Initial release on the PortAudio mailinglist.
cannam@124 176
cannam@124 177
cannam@124 178