From bf4ce2c7a5b1c7fe4a86dd96588e0ca48bafaf1a Mon Sep 17 00:00:00 2001 From: Mattia Iavarone Date: Thu, 1 Apr 2021 20:27:04 +0200 Subject: [PATCH] Release v0.10.3 --- README.md | 2 +- docs/_about/changelog.md | 11 ++++++++++- docs/_config.yml | 2 +- lib/build.gradle.kts | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b47460a9..8aa42823 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Transcodes and compresses video files into the MP4 format, with audio support, u Android codecs available on the device. Works on API 18+. ```groovy -implementation 'com.otaliastudios:transcoder:0.10.2' +implementation 'com.otaliastudios:transcoder:0.10.3' ``` - Fast transcoding to AAC/AVC diff --git a/docs/_about/changelog.md b/docs/_about/changelog.md index 34a3b699..5a77607d 100644 --- a/docs/_about/changelog.md +++ b/docs/_about/changelog.md @@ -9,6 +9,13 @@ New versions are released through GitHub, so the reference page is the [GitHub R > Starting from 0.7.0, you can now [support development](https://github.com/sponsors/natario1) through the GitHub Sponsors program. Companies can share a tiny part of their revenue and get private support hours in return. Thanks! +### v0.10.3 + +- Fix: error when merging many files, thanks to [@DamonChen117][DamonChen117] ([#134][134]) +- Fix: more concatenation issues + + + ### v0.10.2 - Fix: error when merging many files ([#132][132]) @@ -126,6 +133,7 @@ frames, the trim timestamp might be different than what was selected. [aweck]: https://github.com/aweck [mudar]: https://github.com/mudar [cbernier2]: https://github.com/cbernier2 +[DamonChen117]: https://github.com/DamonChen117 [4]: https://github.com/natario1/Transcoder/pull/4 [5]: https://github.com/natario1/Transcoder/pull/5 @@ -155,4 +163,5 @@ frames, the trim timestamp might be different than what was selected. [127]: https://github.com/natario1/Transcoder/pull/127 [128]: https://github.com/natario1/Transcoder/pull/128 [130]: https://github.com/natario1/Transcoder/pull/130 -[132]: https://github.com/natario1/Transcoder/pull/132 \ No newline at end of file +[132]: https://github.com/natario1/Transcoder/pull/132 +[134]: https://github.com/natario1/Transcoder/pull/134 \ No newline at end of file diff --git a/docs/_config.yml b/docs/_config.yml index 45c0537f..cc597db7 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -12,7 +12,7 @@ google_analytics_id: 'UA-155077779-2' google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4' github: [metadata] # TODO What's this? github_repo: Transcoder -github_version: 0.10.2 +github_version: 0.10.3 github_branch: main baseurl: '/Transcoder' # Keep as an empty string if served up at the root collections: diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index da16577b..a670c667 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -15,7 +15,7 @@ android { setMinSdkVersion(property("minSdkVersion") as Int) setTargetSdkVersion(property("targetSdkVersion") as Int) versionCode = 1 - versionName = "0.10.2" + versionName = "0.10.3" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } buildTypes["release"].isMinifyEnabled = false