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

Commit 8137ccd

Browse files
committed
Release of version 0.7.0
1 parent 4c1ac7e commit 8137ccd

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

Changelog.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
----------------------------------- v0.7.0 -----------------------------------
2+
3+
NOTES:
4+
- This version does NOT fix the various problems that occur because of the
5+
latest YouTube changes.
6+
7+
FEATURES:
8+
- The portable version of YoutubeExtractor now supports Xamarin.Android and
9+
Xamarin.iOS
10+
- Better YouTube URL regognition.
11+
- Added an optional constructor argument to specify the exact number of bytes
12+
to download.
13+
14+
CHANGES:
15+
- DownloadUrlResolver now throws the `VideoNotAvailableException` with the
16+
reason for the request failure.
17+
- Removed the obsolete `ProgressChanged` event and `OnProgressChanged` method
18+
from the `Downloader` class.
19+
20+
BUGFIXES:
21+
- Fixed the resource disposal in the `VideoDownloader` class.
22+
123
----------------------------------- v0.6.2 -----------------------------------
224

325
BUGFIXES:

YoutubeExtractor.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>YoutubeExtractor</id>
5-
<version>0.6.2</version>
5+
<version>0.7.0</version>
66
<title>YoutubeExtractor</title>
77
<authors>Dennis Daume</authors>
88
<owners>Dennis Daume</owners>

YoutubeExtractor/YoutubeExtractor.Portable/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
// You can specify all the values or you can default the Build and Revision Numbers
2525
// by using the '*' as shown below:
2626
// [assembly: AssemblyVersion("1.0.*")]
27-
[assembly: AssemblyVersion("0.6.2")]
28-
[assembly: AssemblyFileVersion("0.6.2")]
27+
[assembly: AssemblyVersion("0.7.0")]
28+
[assembly: AssemblyFileVersion("0.7.0")]

YoutubeExtractor/YoutubeExtractor/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("0.6.2")]
35-
[assembly: AssemblyFileVersion("0.6.2")]
34+
[assembly: AssemblyVersion("0.7.0")]
35+
[assembly: AssemblyFileVersion("0.7.0")]

readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ YoutubeExtractor is a library for .NET, written in C#, that allows to download v
1212
- .NET Framework 3.5 and higher
1313
- Windows Phone 8
1414
- WinRT
15+
- Xamarin.Android
16+
- Xamarin.iOS
1517

16-
Note that Windows Phone 8 and WinRT only support the extraction of the download URLs
18+
Note that Windows Phone 8, WinRT, Xamarin.Android and Xamarin.iOS only support the extraction of the download URLs
1719

1820
## NuGet
1921

0 commit comments

Comments
 (0)