Skip to content

Commit

Permalink
* Update version number
Browse files Browse the repository at this point in the history
* Publish nuget package
  • Loading branch information
ioctlLR committed Mar 19, 2014
1 parent 44d737c commit 0c8b03f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
13 changes: 6 additions & 7 deletions NVorbis.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NVorbis</id>
<version>0.8.1.0</version>
<version>0.8.2.0</version>
<title />
<authors>Andrew Ward</authors>
<owners />
Expand All @@ -11,12 +11,11 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A fully managed implementation of a Xiph.org Foundation Ogg Vorbis decoder.</description>
<summary>A managed Xiph.org Foundation Ogg Vorbis decoder</summary>
<releaseNotes>- Bugfix: Threading issues in Ogg reader
- Rewrite StreamReadBuffer (again) for simplicity and correctness
- Add "saved buffer" concept to StreamReadBuffer for multi-threaded performance
- Reduce Ogg reader memory usage
- Add locking for multi-threading support in Ogg reader
- Remove exception-based logic where possible for better performance</releaseNotes>
<releaseNotes>- BugFix: StreamReadBuffer will no longer try to copy data when offset is bigger than source
- Add parameter change event to packet provider interface
- Add parameter change logic to VorbisStreamDecoder and exposed to public API
- Rewrote Ogg packet traversal / search / seeking and locking for clarity &amp; performance
- Improved Ogg end of stream handling</releaseNotes>
<language>en-US</language>
<tags>ogg vorbis xiph audio c# sound .NET</tags>
<frameworkAssemblies>
Expand Down
4 changes: 2 additions & 2 deletions NVorbis/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("0.8.1.0")]
[assembly: AssemblyFileVersion("0.8.1.0")]
[assembly: AssemblyVersion("0.8.2.0")]
[assembly: AssemblyFileVersion("0.8.2.0")]
8 changes: 8 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,11 @@ History
* Reduce Ogg reader memory usage
* Add locking for multi-threading support in Ogg reader
* Remove exception-based logic where possible for better performance
0.8.2 - 03/19/2014
* BugFix: Don't try to copy StreamReadBuffer data when offset is bigger than source
* Add parameter change event to packet provider interface
* Refactored decoder setup so parameter change can be handled
* Rewrote packet peek / get logic for simplicity
* Refactored locking in OggPacketReader / OggContainerReader
* Improved Ogg end of stream handling
* Changed container seek API to use packets instead of indexes to reduce linked list traversals

0 comments on commit 0c8b03f

Please sign in to comment.