Skip to content

Commit

Permalink
🚀 pub -v 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
newtaDev committed Aug 14, 2023
1 parent e1fb768 commit 59f0b94
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.2.1
- upgraded all dependencies
- upgraded `http` lib to `^1.1.0`
- fix fullscreen issue in IOS

## 0.2.0
- upgraded dependencies
- migrate from `wakelock` to `wakelock_plus` PR [#129](https://github.com/newtaDev/pod_player/pull/129)
Expand Down
12 changes: 7 additions & 5 deletions lib/src/controllers/pod_video_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,13 @@ class _PodVideoController extends _PodUiController {
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown,
]),
SystemChrome.setPreferredOrientations(DeviceOrientation.values),
SystemChrome.setEnabledSystemUIMode(
SystemUiMode.manual,
overlays: SystemUiOverlay.values,
),
if (!(defaultTargetPlatform == TargetPlatform.iOS)) ...[
SystemChrome.setPreferredOrientations(DeviceOrientation.values),
SystemChrome.setEnabledSystemUIMode(
SystemUiMode.manual,
overlays: SystemUiOverlay.values,
),
]
]);
}

Expand Down
17 changes: 9 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pod_player
description: Vimeo and youtube player for flutter, Pod player provides customizable video player controls that support android, ios and web.
version: 0.2.0
version: 0.2.1
homepage: https://github.com/newtaDev/pod_player

environment:
Expand All @@ -12,16 +12,17 @@ dependencies:
sdk: flutter
# services
video_player: ^2.7.0
http: ^0.13.6
get: ^4.6.5
wakelock_plus: ^1.1.0
universal_html: ^2.2.3
youtube_explode_dart: ^1.12.4
http: ^1.1.0
get: ^4.6.5
wakelock_plus: ^1.1.1
universal_html: ^2.2.3
youtube_explode_dart: ^2.0.1

dev_dependencies:
flutter_test:
sdk: flutter
very_good_analysis: ^4.0.0+1
very_good_analysis: ^5.0.0+1

screenshots:
- description: Pod video player logo
path: screenshots/logo.png
path: screenshots/logo.png

0 comments on commit 59f0b94

Please sign in to comment.