Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/video_player/video_player_android/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Updates code for `no_leading_underscores_for_local_identifiers` lint.
* Updates minimum Flutter version to 2.10.
* Fixes violations of new analysis option use_named_constants.
* Removes an unnecessary override in example code.

## 2.3.9

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,11 +341,6 @@ class MiniController extends ValueNotifier<VideoPlayerValue> {
void _updatePosition(Duration position) {
value = value.copyWith(position: position);
}

@override
void removeListener(VoidCallback listener) {
super.removeListener(listener);
}
}

/// Widget that displays the video controlled by [controller].
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT

* Adds an integration test for a bug where the aspect ratios of some HLS videos are incorrectly inverted.
* Removes an unnecessary override in example code.

## 2.3.7

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,11 +341,6 @@ class MiniController extends ValueNotifier<VideoPlayerValue> {
void _updatePosition(Duration position) {
value = value.copyWith(position: position);
}

@override
void removeListener(VoidCallback listener) {
super.removeListener(listener);
}
}

/// Widget that displays the video controlled by [controller].
Expand Down
6 changes: 6 additions & 0 deletions script/tool/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## NEXT

* Pins `package:git` dependency to `2.0.x` until `dart >=2.18.0` becomes our
oldest legacy.
* Updates test mocks.

## 0.13.0

* Renames `all-plugins-app` to `create-all-packages-app` to clarify what it
Expand Down
3 changes: 2 additions & 1 deletion script/tool/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ dependencies:
collection: ^1.15.0
colorize: ^3.0.0
file: ^6.1.0
git: ^2.0.0
# Pin git to 2.0.x until dart >=2.18 is legacy
git: '>=2.0.0 <2.1.0'
http: ^0.13.3
http_multi_server: ^3.0.1
meta: ^1.3.0
Expand Down
Loading