Skip to content

Commit 5d494df

Browse files
committed
v0.31.0
1 parent 218712e commit 5d494df

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

.github/workflows/pub.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ jobs:
2424
- uses: dart-lang/setup-dart@v1
2525
# Here you can insert custom steps you need
2626
# - run: dart tool/generate-code.dart
27+
- run: dart format lib
2728
- name: Publish
2829
run: dart pub publish --force

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.31.0
2+
3+
* fix crash when killing app on iOS
4+
* fix crash when exiting app on linux
5+
6+
17
## 0.30.0
28

39
* `subtitleFontFile` option can be an http url

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ project is create with `flutter create -t plugin --platforms=linux,macos,windows
1818
- Support most formats via FFmpeg demuxer and software decoders if not supported by gpu. You can use your own ffmpeg 4.0~7.1(or master branch) by removing bundled ffmpeg dynamic library.
1919
- High performance. Lower cpu, gpu and memory load than libmpv based players.
2020
- Support audio without video
21-
- HEVC(ios, mac only), VP8 and VP9 transparent video
21+
- HEVC, VP8 and VP9 transparent video
2222
- Small footprint. Only about 10MB size increase per cpu architecture(platform dependent).
2323

2424

config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ globals:
3434
- mdk.*
3535
comments: true
3636
preamble: |
37-
// Copyright (c) 2019-2024 WangBin <wbsecg1 at gmail.com>
37+
// Copyright (c) 2019-2025 WangBin <wbsecg1 at gmail.com>
3838
// https://github.com/wang-bin/mdk-sdk

darwin/fvp.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
Pod::Spec.new do |s|
77
s.name = 'fvp'
8-
s.version = '0.30.0'
8+
s.version = '0.31.0'
99
s.summary = 'libmdk based Flutter video player plugin'
1010
s.description = <<-DESC
1111
Flutter video player plugin.
@@ -25,7 +25,7 @@ Flutter video player plugin.
2525
s.osx.dependency 'FlutterMacOS'
2626
s.ios.deployment_target = '12.0'
2727
s.osx.deployment_target = '10.13'
28-
s.dependency 'mdk', '~> 0.31.0'
28+
s.dependency 'mdk', '~> 0.32.0'
2929

3030
# s.platform = :osx, '10.11'
3131
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fvp
22
description: video_player plugin and backend APIs. Support all desktop/mobile platforms with hardware decoders, optimal renders. Supports most formats via FFmpeg
3-
version: 0.30.0
3+
version: 0.31.0
44
homepage: https://github.com/wang-bin/fvp
55
topics:
66
- video

windows/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.14)
66

77
# Project-level configuration.
88
set(PROJECT_NAME "fvp")
9-
project(${PROJECT_NAME} VERSION 0.30.0
9+
project(${PROJECT_NAME} VERSION 0.31.0
1010
DESCRIPTION "Flutter video_player plugin via libmdk")
1111
set(PROJECT_VERSION_TWEAK 0)
1212
set(CMAKE_CXX_STANDARD 20)

0 commit comments

Comments
 (0)