File tree 3 files changed +17
-54
lines changed
packages/video_player/video_player 3 files changed +17
-54
lines changed Original file line number Diff line number Diff line change 1
- ## 2.0.0-nullsafety.11
2
-
3
- * Setting the ` mixWithOthers ` ` VideoPlayerOptions ` in web now is silently ignored instead of throwing an exception.
4
-
5
- ## 2.0.0-nullsafety.10
6
-
7
- * Updated to video_player_platform_interface 4.0.
8
-
9
- ## 2.0.0-nullsafety.9
10
-
11
- * Fixed an issue where a crash can occur after a closing a video player view on iOS.
12
-
13
- ## 2.0.0-nullsafety.8
14
-
15
- * Migrated from deprecated ` defaultBinaryMessenger ` .
16
-
17
- ## 2.0.0-nullsafety.7
18
-
19
- * Update the example app: remove the deprecated ` RaisedButton ` and ` FlatButton ` widgets.
20
-
21
- ## 2.0.0-nullsafety.6
22
-
23
- * Fix ` VideoPlayerValue toString() ` test.
24
-
25
- ## 2.0.0-nullsafety.5
1
+ ## 2.0.0
26
2
3
+ * Migrate to null safety.
4
+ * Fix an issue where ` isBuffering ` was not updating on Android.
27
5
* Fix outdated links across a number of markdown files ([ #3276 ] ( https://github.com/flutter/plugins/pull/3276 ) )
28
-
29
- ## 2.0.0-nullsafety.4
30
-
31
- * Fixed an issue where ` isBuffering ` was not updating on Android.
32
-
33
- ## 2.0.0-nullsafety.3
34
-
35
- * Dart null safety requires ` 2.12 ` .
36
-
37
- ## 2.0.0-nullsafety.2
38
-
39
- * Bump SDK version.
40
-
41
- ## 2.0.0-nullsafety.1
42
-
43
- * Merge master.
44
-
45
- ## 2.0.0-nullsafety
46
-
47
- * Migration to null safety.
6
+ * Fix ` VideoPlayerValue toString() ` test.
7
+ * Update the example app: remove the deprecated ` RaisedButton ` and ` FlatButton ` widgets.
8
+ * Migrate from deprecated ` defaultBinaryMessenger ` .
9
+ * Fix an issue where a crash can occur after a closing a video player view on iOS.
10
+ * Setting the ` mixWithOthers ` ` VideoPlayerOptions ` in web now is silently ignored instead of throwing an exception.
48
11
49
12
## 1.0.2
50
13
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ dev_dependencies:
22
22
integration_test :
23
23
path : ../../../integration_test
24
24
test : any
25
- pedantic : ^1.10.0-nullsafety.1
25
+ pedantic : ^1.10.0
26
26
27
27
flutter :
28
28
uses-material-design : true
@@ -32,5 +32,5 @@ flutter:
32
32
- assets/bumble_bee_captions.srt
33
33
34
34
environment :
35
- sdk : " >=2.12.0-0 <3.0.0"
35
+ sdk : " >=2.12.0-259.9.beta <3.0.0"
36
36
flutter : " >=1.12.13+hotfix.5"
Original file line number Diff line number Diff line change 1
1
name : video_player
2
2
description : Flutter plugin for displaying inline video with other Flutter
3
3
widgets on Android, iOS, and web.
4
- version : 2.0.0-nullsafety.11
4
+ version : 2.0.0
5
5
homepage : https://github.com/flutter/plugins/tree/master/packages/video_player/video_player
6
6
7
7
flutter :
@@ -16,26 +16,26 @@ flutter:
16
16
default_package : video_player_web
17
17
18
18
dependencies :
19
- meta : ^1.3.0-nullsafety.3
20
- video_player_platform_interface : ^4.0.0-nullsafety.0
19
+ meta : ^1.3.0
20
+ video_player_platform_interface : ^4.0.0
21
21
22
22
# The design on https://flutter.dev/go/federated-plugins was to leave
23
23
# this constraint as "any". We cannot do it right now as it fails pub publish
24
24
# validation, so we set a ^ constraint. The exact value doesn't matter since
25
25
# the constraints on the interface pins it.
26
26
# TODO(amirh): Revisit this (either update this part in the design or the pub tool).
27
27
# https://github.com/flutter/flutter/issues/46264
28
- video_player_web : ^2.0.0-nullsafety.1
28
+ video_player_web : ^2.0.0
29
29
30
30
flutter :
31
31
sdk : flutter
32
32
flutter_test :
33
33
sdk : flutter
34
34
35
35
dev_dependencies :
36
- pedantic : ^1.10.0-nullsafety.1
37
- pigeon : ^0.1.19
36
+ pedantic : ^1.10.0
37
+ pigeon : ^0.1.21
38
38
39
39
environment :
40
- sdk : " >=2.12.0-0 <3.0.0"
40
+ sdk : " >=2.12.0-259.9.beta <3.0.0"
41
41
flutter : " >=1.12.13+hotfix.5"
You can’t perform that action at this time.
0 commit comments