Browse Source

updated for 1.8.5 release

pull/418/head
Mark Heath 7 years ago
parent
commit
420e6072d4
  1. 1
      NAudio.nuspec
  2. 2
      NAudio/Properties/AssemblyInfo.cs
  3. 24
      RELEASE_NOTES.md
  4. 2
      build.fsx

1
NAudio.nuspec

@ -18,6 +18,5 @@
<file src="NAudio.Universal\bin\Release\NAudio.Universal.dll" target="lib\uap10.0" />
<file src="NAudio.Universal\bin\Release\NAudio.Universal.xml" target="lib\uap10.0" />
<file src="license.txt" />
<file src="readme.txt" />
</files>
</package>

2
NAudio/Properties/AssemblyInfo.cs

@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Mark Heath")]
[assembly: AssemblyProduct("NAudio")]
[assembly: AssemblyCopyright("© 2001-2017 Mark Heath")]
[assembly: AssemblyCopyright("© 2001-2018 Mark Heath")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

24
RELEASE_NOTES.md

@ -1,5 +1,25 @@
### 1.8.4
### 1.8.5 (3 Nov 2018)
- DMO Effect support via `DmoEffectWaveProvider` #413
- New Broadcast Wave File Writer `BwfWriter`
- Various bugfixes and enhancements:
- Improvements to stopping recording in `WaveInEvent` #403
- `WaveIn` and `WaveInEvent` support `GetPosition` #399
- `CueWaveFileReader` support for `Stream` #409, #376
- Fix reading wave files with odd chunk lengths #386
- Fix some WASAPI exclusive /event mode issues #383
- Fix 32 bit float ASIO sample converter #356
- Fixing `IAudioCaptureClient` cast exception issue #350
- `WaveOut` and `WaveOutEvent` read the actual volume #349
- `PropVariant` support for `VT_FILETIME` #341
- Added definitions of several media subtypes
- Fixed offset bug in `StereoToMonoSampleProvider` #312
- `KeySignatureEvent` reports flats properly as negative number #295
- `WaveInProvider.Read` uses offset parameter #297
- BREAKING - retired cakewalk drum map file format support
- Retired Win 8 project in favour of UWP
### 1.8.4 (6 Dec 2017)
* Windows 10 Universal build now included in NuGet package
* adding a TotalTime property to WaveFileWriter

2
build.fsx

@ -59,7 +59,7 @@ Target "NuGet" (fun _ ->
Summary = projectSummary
WorkingDir = packagingDir
AccessKey = myAccesskey*)
Version = "1.8.4" // todo get the version number from elsewhere
Version = "1.8.5" // todo get the version number from elsewhere
WorkingDir = "."
OutputPath = deployDir

Loading…
Cancel
Save