annotate src/portaudio_20161030/bindings/cpp/ChangeLog @ 169:223a55898ab9 tip default

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