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 3 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
4 changes: 4 additions & 0 deletions script/tool/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## NEXT

* Updates dependencies to `git:^2.2.0`, `mockito:^5.3.2` and regenerates mocks.

## 0.13.0

* Renames `all-plugins-app` to `create-all-packages-app` to clarify what it
Expand Down
4 changes: 2 additions & 2 deletions script/tool/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
collection: ^1.15.0
colorize: ^3.0.0
file: ^6.1.0
git: ^2.0.0
git: ^2.2.0
http: ^0.13.3
http_multi_server: ^3.0.1
meta: ^1.3.0
Expand All @@ -26,7 +26,7 @@ dependencies:
dev_dependencies:
build_runner: ^2.0.3
matcher: ^0.12.10
mockito: ^5.0.7
mockito: ^5.3.2

environment:
sdk: '>=2.12.0 <3.0.0'
Loading