Skip to content

Commit 89ba63a

Browse files
committed
Version 1.12.1
(dart analyzer fix, dartfmt)
1 parent e4b8e59 commit 89ba63a

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.12.1
2+
- Fix #216 comments api.
3+
- Export `BaseSearchContent`, thanks to @RubinRaithel.
4+
- Updated tests.
5+
16
## 1.12.0
27
- Fix #207: Allow every character to be present in a username.
38
- Fix shorts. Thanks to @prateekmedia.

lib/src/channels/username.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Username with _$Username {
2828

2929
const factory Username._(
3030
/// User name as string.
31-
final String value,
31+
String value,
3232
) = _Username;
3333

3434
/// Returns true if the given username is a valid username.

lib/src/reverse_engineering/pages/search_page.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import 'package:html/parser.dart' as parser;
44
import '../../../youtube_explode_dart.dart';
55
import '../../extensions/helpers_extension.dart';
66
import '../../retry.dart';
7-
import '../../search/base_search_content.dart';
87
import '../models/initial_data.dart';
98
import '../models/youtube_page.dart';
109

lib/src/search/search.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
/// {@category Search}
44
library youtube_explode.search;
55

6+
export 'base_search_content.dart';
67
export 'search_channel.dart';
78
export 'search_client.dart';
89
export 'search_filter.dart';
910
export 'search_list.dart';
1011
export 'search_playlist.dart';
1112
export 'search_query.dart';
12-
export 'base_search_content.dart';
1313
export 'search_video.dart';

lib/src/search/search_list.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import 'package:collection/collection.dart';
55
import '../../youtube_explode_dart.dart';
66
import '../extensions/helpers_extension.dart';
77
import '../reverse_engineering/pages/search_page.dart';
8-
import 'base_search_content.dart';
98

109
/// This list contains search videos.
1110
///This behaves like a [List] but has the [SearchList.nextPage] to get the next batch of videos.

lib/src/videos/closed_captions/closed_caption_manifest.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class ClosedCaptionManifest {
2929
}
3030
}
3131

32-
3332
bool x(bool autoGen, bool isAuto) {
3433
if (!autoGen) {
3534
return !isAuto;

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: youtube_explode_dart
22
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
44

55
homepage: https://github.com/Hexer10/youtube_explode_dart
66

@@ -22,7 +22,7 @@ dev_dependencies:
2222
console: ^4.1.0
2323
freezed: ^2.0.3+1
2424
json_serializable: ^6.2.0
25-
lint: ^1.8.2
25+
lint: ^1.10.0
2626
test: ^1.21.1
2727

2828
false_secrets:

0 commit comments

Comments
 (0)