Skip to content

Commit

Permalink
Version 1.3.0. Adds PRs fluttercommunity#598 and fluttercommunity#599.
Browse files Browse the repository at this point in the history
  • Loading branch information
diegotori committed Feb 18, 2022
1 parent 726aa24 commit 5f3114b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
## 1.3.0

* ⬆️ [#598](https://github.com/fluttercommunity/chewie/pull/598): Update `wakelock` to `^0.6.1+1`. Thanks [fehernyul](https://github.com/fehernyul).
* ⬆️ [#599](https://github.com/fluttercommunity/chewie/pull/599): Uniform controls. Thanks [BuginRug](https://github.com/BuginRug).

**Slight Breaking Change**. Instead of:

```dart
typedef ChewieRoutePageBuilder = Widget Function(
BuildContext context,
Animation<double> animation,
Animation<double> secondaryAnimation,
_ChewieControllerProvider controllerProvider,
);
```

It is now:

```dart
typedef ChewieRoutePageBuilder = Widget Function(
BuildContext context,
Animation<double> animation,
Animation<double> secondaryAnimation,
ChewieControllerProvider controllerProvider,
);
```

TL;DR: We had to make `_ChewieControllerProvider` public.

* 🛠️ Fixed lint and formatting problems
* Under New Management under the auspices of [Flutter Community](https://github.com/fluttercommunity), and new maintainers [diegotori](https://github.com/diegotori) and [maherjaafar](https://github.com/maherjaafar).

## 1.2.3

* ⬆️ Update 'provider' to 6.0.1
Expand Down Expand Up @@ -216,3 +248,4 @@ Initial version of Chewie, the video player with a heart of gold.
* Includes Material Player Controls
* Includes Cupertino Player Controls
* Spike version: Focus on good looking UI. Internal code is sloppy, needs a refactor and tests

4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: chewie
description: A video player for Flutter with Cupertino and Material play controls
version: 1.2.3
homepage: https://github.com/brianegan/chewie
version: 1.3.0
homepage: https://github.com/fluttercommunity/chewie

environment:
sdk: '>=2.13.0 <3.0.0'
Expand Down

0 comments on commit 5f3114b

Please sign in to comment.