Skip to content

Commit

Permalink
Version 1.12.1
Browse files Browse the repository at this point in the history
(dart analyzer fix, dartfmt)
  • Loading branch information
Hexer10 committed Sep 21, 2022
1 parent e4b8e59 commit 89ba63a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.12.1
- Fix #216 comments api.
- Export `BaseSearchContent`, thanks to @RubinRaithel.
- Updated tests.

## 1.12.0
- Fix #207: Allow every character to be present in a username.
- Fix shorts. Thanks to @prateekmedia.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/channels/username.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Username with _$Username {

const factory Username._(
/// User name as string.
final String value,
String value,
) = _Username;

/// Returns true if the given username is a valid username.
Expand Down
1 change: 0 additions & 1 deletion lib/src/reverse_engineering/pages/search_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import 'package:html/parser.dart' as parser;
import '../../../youtube_explode_dart.dart';
import '../../extensions/helpers_extension.dart';
import '../../retry.dart';
import '../../search/base_search_content.dart';
import '../models/initial_data.dart';
import '../models/youtube_page.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/search/search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
/// {@category Search}
library youtube_explode.search;

export 'base_search_content.dart';
export 'search_channel.dart';
export 'search_client.dart';
export 'search_filter.dart';
export 'search_list.dart';
export 'search_playlist.dart';
export 'search_query.dart';
export 'base_search_content.dart';
export 'search_video.dart';
1 change: 0 additions & 1 deletion lib/src/search/search_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import 'package:collection/collection.dart';
import '../../youtube_explode_dart.dart';
import '../extensions/helpers_extension.dart';
import '../reverse_engineering/pages/search_page.dart';
import 'base_search_content.dart';

/// This list contains search videos.
///This behaves like a [List] but has the [SearchList.nextPage] to get the next batch of videos.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class ClosedCaptionManifest {
}
}


bool x(bool autoGen, bool isAuto) {
if (!autoGen) {
return !isAuto;
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.12.0
version: 1.12.1

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

Expand All @@ -22,7 +22,7 @@ dev_dependencies:
console: ^4.1.0
freezed: ^2.0.3+1
json_serializable: ^6.2.0
lint: ^1.8.2
lint: ^1.10.0
test: ^1.21.1

false_secrets:
Expand Down

0 comments on commit 89ba63a

Please sign in to comment.