From 2eba7b2e0575cb6c6c022696d11ab300d24cd8e4 Mon Sep 17 00:00:00 2001 From: Filipe Marchesini Date: Thu, 23 Feb 2023 13:10:45 -0300 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20version:=20Updated=20`?= =?UTF-8?q?ffpyplayer`=20version=20and=20url?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the `ffpyplayer` version from 4.3.2 (2020) to the [latest](https://github.com/matham/ffpyplayer/releases) release (2023). Also updated the url. I'm already using the version 4.4.0 on computer and on my phone, and it works fine on both. --- pythonforandroid/recipes/ffpyplayer/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/ffpyplayer/__init__.py b/pythonforandroid/recipes/ffpyplayer/__init__.py index 6260037a70..1f4d92a9c2 100644 --- a/pythonforandroid/recipes/ffpyplayer/__init__.py +++ b/pythonforandroid/recipes/ffpyplayer/__init__.py @@ -4,8 +4,8 @@ class FFPyPlayerRecipe(CythonRecipe): - version = 'v4.3.2' - url = 'https://github.com/matham/ffpyplayer/archive/{version}.zip' + version = 'v4.4.0' + url = 'https://github.com/matham/ffpyplayer/archive/refs/tags/{version}.zip' depends = ['python3', 'sdl2', 'ffmpeg'] opt_depends = ['openssl', 'ffpyplayer_codecs'] From 1def748719e8417cd6dc6151d5e07d3043ef67f6 Mon Sep 17 00:00:00 2001 From: Filipe Marchesini Date: Thu, 23 Feb 2023 14:53:06 -0300 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Dexer <73297572+DexerBR@users.noreply.github.com> --- pythonforandroid/recipes/ffpyplayer/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/ffpyplayer/__init__.py b/pythonforandroid/recipes/ffpyplayer/__init__.py index 1f4d92a9c2..545d4755d1 100644 --- a/pythonforandroid/recipes/ffpyplayer/__init__.py +++ b/pythonforandroid/recipes/ffpyplayer/__init__.py @@ -4,8 +4,8 @@ class FFPyPlayerRecipe(CythonRecipe): - version = 'v4.4.0' - url = 'https://github.com/matham/ffpyplayer/archive/refs/tags/{version}.zip' + version = '4.4.0' + url = 'https://github.com/matham/ffpyplayer/archive/refs/tags/v{version}.zip' depends = ['python3', 'sdl2', 'ffmpeg'] opt_depends = ['openssl', 'ffpyplayer_codecs']