File tree Expand file tree Collapse file tree 7 files changed +9
-7
lines changed
reverse_engineering/pages Expand file tree Collapse file tree 7 files changed +9
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.12.1
2
+ - Fix #216 comments api.
3
+ - Export ` BaseSearchContent ` , thanks to @RubinRaithel .
4
+ - Updated tests.
5
+
1
6
## 1.12.0
2
7
- Fix #207 : Allow every character to be present in a username.
3
8
- Fix shorts. Thanks to @prateekmedia .
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class Username with _$Username {
28
28
29
29
const factory Username ._(
30
30
/// User name as string.
31
- final String value,
31
+ String value,
32
32
) = _Username ;
33
33
34
34
/// Returns true if the given username is a valid username.
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import 'package:html/parser.dart' as parser;
4
4
import '../../../youtube_explode_dart.dart' ;
5
5
import '../../extensions/helpers_extension.dart' ;
6
6
import '../../retry.dart' ;
7
- import '../../search/base_search_content.dart' ;
8
7
import '../models/initial_data.dart' ;
9
8
import '../models/youtube_page.dart' ;
10
9
Original file line number Diff line number Diff line change 3
3
/// {@category Search}
4
4
library youtube_explode.search;
5
5
6
+ export 'base_search_content.dart' ;
6
7
export 'search_channel.dart' ;
7
8
export 'search_client.dart' ;
8
9
export 'search_filter.dart' ;
9
10
export 'search_list.dart' ;
10
11
export 'search_playlist.dart' ;
11
12
export 'search_query.dart' ;
12
- export 'base_search_content.dart' ;
13
13
export 'search_video.dart' ;
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import 'package:collection/collection.dart';
5
5
import '../../youtube_explode_dart.dart' ;
6
6
import '../extensions/helpers_extension.dart' ;
7
7
import '../reverse_engineering/pages/search_page.dart' ;
8
- import 'base_search_content.dart' ;
9
8
10
9
/// This list contains search videos.
11
10
///This behaves like a [List] but has the [SearchList.nextPage] to get the next batch of videos.
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ class ClosedCaptionManifest {
29
29
}
30
30
}
31
31
32
-
33
32
bool x (bool autoGen, bool isAuto) {
34
33
if (! autoGen) {
35
34
return ! isAuto;
Original file line number Diff line number Diff line change 1
1
name : youtube_explode_dart
2
2
description : A port in dart of the youtube explode library. Supports several API functions without the need of Youtube API Key.
3
- version : 1.12.0
3
+ version : 1.12.1
4
4
5
5
homepage : https://github.com/Hexer10/youtube_explode_dart
6
6
@@ -22,7 +22,7 @@ dev_dependencies:
22
22
console : ^4.1.0
23
23
freezed : ^2.0.3+1
24
24
json_serializable : ^6.2.0
25
- lint : ^1.8.2
25
+ lint : ^1.10.0
26
26
test : ^1.21.1
27
27
28
28
false_secrets :
You can’t perform that action at this time.
0 commit comments