Skip to content
This repository has been archived by the owner on Sep 28, 2020. It is now read-only.

Commit

Permalink
Release of version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flagbug committed Dec 27, 2013
1 parent 4c1ac7e commit 8137ccd
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
22 changes: 22 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
----------------------------------- v0.7.0 -----------------------------------

NOTES:
- This version does NOT fix the various problems that occur because of the
latest YouTube changes.

FEATURES:
- The portable version of YoutubeExtractor now supports Xamarin.Android and
Xamarin.iOS
- Better YouTube URL regognition.
- Added an optional constructor argument to specify the exact number of bytes
to download.

CHANGES:
- DownloadUrlResolver now throws the `VideoNotAvailableException` with the
reason for the request failure.
- Removed the obsolete `ProgressChanged` event and `OnProgressChanged` method
from the `Downloader` class.

BUGFIXES:
- Fixed the resource disposal in the `VideoDownloader` class.

----------------------------------- v0.6.2 -----------------------------------

BUGFIXES:
Expand Down
2 changes: 1 addition & 1 deletion YoutubeExtractor.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>YoutubeExtractor</id>
<version>0.6.2</version>
<version>0.7.0</version>
<title>YoutubeExtractor</title>
<authors>Dennis Daume</authors>
<owners>Dennis Daume</owners>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.6.2")]
[assembly: AssemblyFileVersion("0.6.2")]
[assembly: AssemblyVersion("0.7.0")]
[assembly: AssemblyFileVersion("0.7.0")]
4 changes: 2 additions & 2 deletions YoutubeExtractor/YoutubeExtractor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.6.2")]
[assembly: AssemblyFileVersion("0.6.2")]
[assembly: AssemblyVersion("0.7.0")]
[assembly: AssemblyFileVersion("0.7.0")]
4 changes: 3 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ YoutubeExtractor is a library for .NET, written in C#, that allows to download v
- .NET Framework 3.5 and higher
- Windows Phone 8
- WinRT
- Xamarin.Android
- Xamarin.iOS

Note that Windows Phone 8 and WinRT only support the extraction of the download URLs
Note that Windows Phone 8, WinRT, Xamarin.Android and Xamarin.iOS only support the extraction of the download URLs

## NuGet

Expand Down

0 comments on commit 8137ccd

Please sign in to comment.