release flutter v6.0.2
This commit is contained in:
parent
05c38dc453
commit
8bae96a48d
|
@ -1,3 +1,11 @@
|
||||||
|
## 6.0.2
|
||||||
|
- Bug fix release based on native v6.0
|
||||||
|
- Fixes version information in podspec and gradle files
|
||||||
|
|
||||||
|
## 6.0.2-LTS
|
||||||
|
- Bug fix release based on native v6.0.LTS
|
||||||
|
- Fixes version information in podspec and gradle files
|
||||||
|
|
||||||
## 6.0.1
|
## 6.0.1
|
||||||
- Bug fix release based on native v6.0
|
- Bug fix release based on native v6.0
|
||||||
- Fixes issues 804 and 809
|
- Fixes issues 804 and 809
|
||||||
|
|
|
@ -35,7 +35,7 @@ Add `ffmpeg_kit_flutter` as a dependency in your `pubspec.yaml file`.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
dependencies:
|
dependencies:
|
||||||
ffmpeg_kit_flutter: 6.0.1
|
ffmpeg_kit_flutter: 6.0.2
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 2.1 Packages
|
#### 2.1 Packages
|
||||||
|
@ -58,7 +58,7 @@ using the following dependency format.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
dependencies:
|
dependencies:
|
||||||
ffmpeg_kit_flutter_<package name>: 6.0.1
|
ffmpeg_kit_flutter_<package name>: 6.0.2
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that hyphens in the package name must be replaced with underscores. Additionally, do not forget to use the package
|
Note that hyphens in the package name must be replaced with underscores. Additionally, do not forget to use the package
|
||||||
|
@ -70,7 +70,7 @@ In order to install the `LTS` variant, append `-LTS` to the version you have for
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
dependencies:
|
dependencies:
|
||||||
ffmpeg_kit_flutter: 6.0.1-LTS
|
ffmpeg_kit_flutter: 6.0.2-LTS
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 2.4 LTS Releases
|
#### 2.4 LTS Releases
|
||||||
|
|
|
@ -29,8 +29,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 24
|
minSdkVersion 24
|
||||||
targetSdkVersion 33
|
targetSdkVersion 33
|
||||||
versionCode 600
|
versionCode 602
|
||||||
versionName "6.0.0"
|
versionName "6.0.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'ffmpeg_kit_flutter'
|
s.name = 'ffmpeg_kit_flutter'
|
||||||
s.version = '6.0.0'
|
s.version = '6.0.2'
|
||||||
s.summary = 'FFmpeg Kit for Flutter'
|
s.summary = 'FFmpeg Kit for Flutter'
|
||||||
s.description = 'A Flutter plugin for running FFmpeg and FFprobe commands.'
|
s.description = 'A Flutter plugin for running FFmpeg and FFprobe commands.'
|
||||||
s.homepage = 'https://github.com/arthenica/ffmpeg-kit'
|
s.homepage = 'https://github.com/arthenica/ffmpeg-kit'
|
||||||
|
|
|
@ -99,7 +99,7 @@ class FFmpegKitFactory {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static String getVersion() => "6.0.0";
|
static String getVersion() => "6.0.2";
|
||||||
|
|
||||||
static LogRedirectionStrategy? getLogRedirectionStrategy(int? sessionId) =>
|
static LogRedirectionStrategy? getLogRedirectionStrategy(int? sessionId) =>
|
||||||
logRedirectionStrategyMap[sessionId];
|
logRedirectionStrategyMap[sessionId];
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'ffmpeg_kit_flutter'
|
s.name = 'ffmpeg_kit_flutter'
|
||||||
s.version = '6.0.0'
|
s.version = '6.0.2'
|
||||||
s.summary = 'FFmpeg Kit for Flutter'
|
s.summary = 'FFmpeg Kit for Flutter'
|
||||||
s.description = 'A Flutter plugin for running FFmpeg and FFprobe commands.'
|
s.description = 'A Flutter plugin for running FFmpeg and FFprobe commands.'
|
||||||
s.homepage = 'https://github.com/arthenica/ffmpeg-kit'
|
s.homepage = 'https://github.com/arthenica/ffmpeg-kit'
|
||||||
|
|
|
@ -3,7 +3,7 @@ description: FFmpeg Kit for Flutter. Supports Android, iOS and macOS platforms.
|
||||||
repository: https://github.com/arthenica/ffmpeg-kit
|
repository: https://github.com/arthenica/ffmpeg-kit
|
||||||
issue_tracker: https://github.com/arthenica/ffmpeg-kit/issues
|
issue_tracker: https://github.com/arthenica/ffmpeg-kit/issues
|
||||||
homepage: https://github.com/arthenica/ffmpeg-kit
|
homepage: https://github.com/arthenica/ffmpeg-kit
|
||||||
version: 6.0.1
|
version: 6.0.2
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.12.0 <4.0.0"
|
sdk: ">=2.12.0 <4.0.0"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user