Version 1.8.0-beta

This commit is contained in:
Mattia 2021-02-26 16:18:51 +01:00
parent 13249aed18
commit 63eba7be44
3 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
## 1.8.0-beta.0
- Fix video search:
Now `getVideos` returns `SearchList` holding 20 videos. `SearchList.nextPage()` can be called to get the next batch of videos.
## 1.7.5
- Fix auto translated closed captions ( #50 )
- Deprecated `autoGenerated` from `getManifest`.
@ -109,7 +113,7 @@
- Implemented `withHighestBitrate` and `sortByBitrate` for `StreamInfo` iterables.
- Implemented `withHighestBitrate` for `VideoStreamInfo` iterables.
- Now `sortByVideoQuality` returns a List of `T`.
- `SearchQuery.nextPage` now returns null if there is no next page.
- `SearchQuery.nextPage` now returns null if there is no next page.
## 1.1.0
- Implement parsing of the search page to retrieve information from youtube searches. See `SearchQuery`.
@ -207,7 +211,7 @@
## 0.0.16
- When a video is not available(403) a `VideoStreamUnavailableException`
- When a video is not available(403) a `VideoStreamUnavailableException`
## 0.0.17

View File

@ -4,7 +4,7 @@ import 'package:collection/collection.dart';
import '../../youtube_explode_dart.dart';
///
/// This list contains search videos.
class SearchList extends DelegatingList<SearchVideo> {
final Stream<SearchVideo> _stream;

View File

@ -1,6 +1,6 @@
name: youtube_explode_dart
description: A port in dart of the youtube explode library. Supports several API functions without the need of Youtube API Key.
version: 1.7.6
version: 1.8.0-beta.0
homepage: https://github.com/Hexer10/youtube_explode_dart
environment: