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

Commit

Permalink
release v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tanersener committed Aug 4, 2021
1 parent ec22482 commit d58d8f9
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 23 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.4.1
- Migrated the plugin to Android v2 embedding

## 0.4.0
- Migrated to nullsafety
- Fixes issue #246 and #266
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.4.0-blue.svg)
![GitHub release](https://img.shields.io/badge/release-v0.4.1-blue.svg)
![](https://img.shields.io/pub/v/flutter_ffmpeg.svg)

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

#### 2.1 Packages
Expand Down
4 changes: 2 additions & 2 deletions 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.4.0'
version '0.4.1'

buildscript {
repositories {
Expand All @@ -20,7 +20,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'com.android.tools.build:gradle:4.1.3'
}
}

Expand Down
20 changes: 10 additions & 10 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.5.0"
version: "2.6.1"
boolean_selector:
dependency: transitive
description:
Expand Down Expand Up @@ -49,7 +49,7 @@ packages:
name: cupertino_icons
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.2"
version: "1.0.3"
fake_async:
dependency: transitive
description:
Expand Down Expand Up @@ -82,7 +82,7 @@ packages:
name: flutter_ffmpeg
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.0"
version: "0.4.1"
flutter_test:
dependency: "direct dev"
description: flutter
Expand All @@ -99,7 +99,7 @@ packages:
name: fluttertoast
url: "https://pub.dartlang.org"
source: hosted
version: "8.0.1-nullsafety.0"
version: "8.0.8"
js:
dependency: transitive
description:
Expand Down Expand Up @@ -134,7 +134,7 @@ packages:
name: path_provider
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.1"
version: "2.0.2"
path_provider_linux:
dependency: transitive
description:
Expand Down Expand Up @@ -195,7 +195,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0"
version: "1.8.1"
stack_trace:
dependency: transitive
description:
Expand Down Expand Up @@ -230,7 +230,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.19"
version: "0.3.0"
typed_data:
dependency: transitive
description:
Expand All @@ -251,14 +251,14 @@ packages:
name: video_player
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.2"
version: "2.1.12"
video_player_platform_interface:
dependency: transitive
description:
name: video_player_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.0"
version: "4.1.0"
video_player_web:
dependency: transitive
description:
Expand All @@ -282,4 +282,4 @@ packages:
version: "0.2.0"
sdks:
dart: ">=2.12.0 <3.0.0"
flutter: ">=1.20.0"
flutter: ">=2.0.0"
12 changes: 6 additions & 6 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_ffmpeg_example
description: Demonstrates how to use the flutter_ffmpeg plugin.
version: 0.4.0
version: 0.4.1
publish_to: 'none'

environment:
Expand All @@ -9,12 +9,12 @@ environment:
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
path_provider: ^2.0.1
cupertino_icons: ^1.0.3
path_provider: ^2.0.2
path: ^1.8.0
fluttertoast: ^8.0.1-nullsafety.0
video_player: ^2.0.2
flutter_ffmpeg: 0.4.0
fluttertoast: ^8.0.8
video_player: ^2.1.12
flutter_ffmpeg: 0.4.1

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.4.0'
s.version = '0.4.1'
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
4 changes: 2 additions & 2 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.4.0
version: 0.4.1
homepage: https://github.com/tanersener/flutter-ffmpeg

environment:
Expand All @@ -12,7 +12,7 @@ dependencies:
sdk: flutter

dev_dependencies:
path_provider: ^2.0.1
path_provider: ^2.0.2
path: ^1.8.0

flutter:
Expand Down

0 comments on commit d58d8f9

Please sign in to comment.