Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Commit

Permalink
Merge pull request #95 from tanersener/development
Browse files Browse the repository at this point in the history
release v0.2.10
  • Loading branch information
tanersener authored Jan 19, 2020
2 parents d8c6a91 + 6658a89 commit e77bd52
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 25 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.2.10
- Fixes issue #94

## 0.2.9
- Implements FFprobe
- Add concurrent execution support
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# flutter_ffmpeg

![GitHub release](https://img.shields.io/badge/release-v0.2.9-blue.svg)
![GitHub release](https://img.shields.io/badge/release-v0.2.10-blue.svg)
![](https://img.shields.io/pub/v/flutter_ffmpeg.svg)

FFmpeg plugin for Flutter. Supports iOS and Android.
Expand Down Expand Up @@ -73,7 +73,7 @@ FFmpeg plugin for Flutter. Supports iOS and Android.
Add `flutter_ffmpeg` as a dependency in your `pubspec.yaml file`.
```
dependencies:
flutter_ffmpeg: ^0.2.9
flutter_ffmpeg: ^0.2.10
```

#### 2.1 Packages
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ String safeExtGet(String prop, String fallback) {
}

group 'com.arthenica.flutter.ffmpeg'
version '0.2.9'
version '0.2.10'

buildscript {
repositories {
Expand Down
10 changes: 5 additions & 5 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- Flutter (1.0.0)
- flutter_ffmpeg/full (0.2.8):
- flutter_ffmpeg/full (0.2.10):
- Flutter
- mobile-ffmpeg-full (= 4.3)
- mobile-ffmpeg-full (4.3)
- mobile-ffmpeg-full (= 4.3.1)
- mobile-ffmpeg-full (4.3.1)
- path_provider (0.0.1):
- Flutter

Expand All @@ -26,8 +26,8 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
flutter_ffmpeg: c515a3a8a2d4e070fd684e85b2dd2084c749a585
mobile-ffmpeg-full: af38edede256cb1d4fcbf10dddef39bf529ecd50
flutter_ffmpeg: cf0a6941ef67e88248c998cc3e34f8acb0b4e454
mobile-ffmpeg-full: 0da7d44a6f9d5573daec359dafa7537f4682278f
path_provider: fb74bd0465e96b594bb3b5088ee4a4e7bb1f2a9d

PODFILE CHECKSUM: 67dc48fdfc7437590697cf64597a0949c9173184
Expand Down
2 changes: 1 addition & 1 deletion example/lib/flutter_ffmpeg_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ class FlutterFFmpegTestAppState extends State<MainPage>
image3Path, fullVideoPath, ffmpegCodec, customOptions))
.then((rc) {
if (rc == 0) {
executeFFprobe("-i " + fullVideoPath);
testGetMediaInformation(fullVideoPath);
}
});

Expand Down
14 changes: 7 additions & 7 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ packages:
name: cupertino_icons
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.2"
version: "0.1.3"
flutter:
dependency: "direct main"
description: flutter
Expand All @@ -72,10 +72,10 @@ packages:
flutter_ffmpeg:
dependency: "direct main"
description:
path: ".."
relative: true
source: path
version: "0.2.9"
name: flutter_ffmpeg
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.10"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down Expand Up @@ -115,7 +115,7 @@ packages:
name: path_provider
url: "https://pub.dartlang.org"
source: hosted
version: "1.4.0"
version: "1.5.1"
pedantic:
dependency: transitive
description:
Expand Down Expand Up @@ -214,4 +214,4 @@ packages:
version: "3.5.0"
sdks:
dart: ">=2.4.0 <3.0.0"
flutter: ">=0.1.4 <2.0.0"
flutter: ">=1.10.0 <2.0.0"
3 changes: 1 addition & 2 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ dependencies:
cupertino_icons: ^0.1.2
path: ^1.6.4
path_provider: ^1.4.0
flutter_ffmpeg:
path: ..
flutter_ffmpeg: 0.2.10

dev_dependencies:
flutter_test:
Expand Down
2 changes: 1 addition & 1 deletion ios/flutter_ffmpeg.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'flutter_ffmpeg'
s.version = '0.2.9'
s.version = '0.2.10'
s.summary = 'FFmpeg plugin for Flutter.'
s.description = 'FFmpeg plugin based on mobile-ffmpeg for Flutter.'
s.homepage = 'https://github.com/tanersener/flutter-ffmpeg'
Expand Down
13 changes: 7 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_ffmpeg
description: Flutter plugin to run FFmpeg on mobile platforms. Supports iOS and Android.
version: 0.2.9
version: 0.2.10
homepage: https://github.com/tanersener/flutter-ffmpeg

environment:
Expand All @@ -16,8 +16,9 @@ dev_dependencies:

flutter:
plugin:
android:
package: com.arthenica.flutter.ffmpeg
pluginClass: FlutterFFmpegPlugin
ios:
pluginClass: FlutterFFmpegPlugin
platforms:
android:
package: com.arthenica.flutter.ffmpeg
pluginClass: FlutterFFmpegPlugin
ios:
pluginClass: FlutterFFmpegPlugin

0 comments on commit e77bd52

Please sign in to comment.