From 9ea26c821f245252d4201a3bc63f09d70fc843bb Mon Sep 17 00:00:00 2001 From: Koen J Date: Tue, 26 Nov 2024 18:10:44 +0100 Subject: [PATCH 1/2] Updated submodules --- app/src/stable/assets/sources/spotify | 2 +- app/src/stable/assets/sources/youtube | 2 +- app/src/unstable/assets/sources/spotify | 2 +- app/src/unstable/assets/sources/youtube | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/stable/assets/sources/spotify b/app/src/stable/assets/sources/spotify index 946bc835..62e19e2e 160000 --- a/app/src/stable/assets/sources/spotify +++ b/app/src/stable/assets/sources/spotify @@ -1 +1 @@ -Subproject commit 946bc835e18d62a584de7150a05cebea7c832b51 +Subproject commit 62e19e2e61ac55ee0d6d836dc1953c5e2b6751b3 diff --git a/app/src/stable/assets/sources/youtube b/app/src/stable/assets/sources/youtube index e2d896ac..f018ca77 160000 --- a/app/src/stable/assets/sources/youtube +++ b/app/src/stable/assets/sources/youtube @@ -1 +1 @@ -Subproject commit e2d896ac45357e85b88a8d1f0a1fc5f4b72bfcfa +Subproject commit f018ca772da6bfc287fa4ef767a4f13c601b52c4 diff --git a/app/src/unstable/assets/sources/spotify b/app/src/unstable/assets/sources/spotify index 946bc835..62e19e2e 160000 --- a/app/src/unstable/assets/sources/spotify +++ b/app/src/unstable/assets/sources/spotify @@ -1 +1 @@ -Subproject commit 946bc835e18d62a584de7150a05cebea7c832b51 +Subproject commit 62e19e2e61ac55ee0d6d836dc1953c5e2b6751b3 diff --git a/app/src/unstable/assets/sources/youtube b/app/src/unstable/assets/sources/youtube index e2d896ac..f018ca77 160000 --- a/app/src/unstable/assets/sources/youtube +++ b/app/src/unstable/assets/sources/youtube @@ -1 +1 @@ -Subproject commit e2d896ac45357e85b88a8d1f0a1fc5f4b72bfcfa +Subproject commit f018ca772da6bfc287fa4ef767a4f13c601b52c4 From a965003a9d2db8217a238a4e4971651e7e903df7 Mon Sep 17 00:00:00 2001 From: Koen J Date: Tue, 26 Nov 2024 18:33:25 +0100 Subject: [PATCH 2/2] Fix gray line in video player. Thank you @michael-oberpriller --- .../java/com/futo/platformplayer/views/video/FutoVideoPlayer.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/java/com/futo/platformplayer/views/video/FutoVideoPlayer.kt b/app/src/main/java/com/futo/platformplayer/views/video/FutoVideoPlayer.kt index 76a8a0f7..5285e99f 100644 --- a/app/src/main/java/com/futo/platformplayer/views/video/FutoVideoPlayer.kt +++ b/app/src/main/java/com/futo/platformplayer/views/video/FutoVideoPlayer.kt @@ -602,6 +602,7 @@ class FutoVideoPlayer : FutoVideoPlayerBase { val lp = background.layoutParams as ConstraintLayout.LayoutParams; lp.bottomMargin = 0; background.layoutParams = lp; + _videoView.setBackgroundColor(Color.parseColor("#FF000000")) gestureControl.hideControls(); //videoControlsBar.visibility = View.GONE; @@ -615,6 +616,7 @@ class FutoVideoPlayer : FutoVideoPlayerBase { val lp = background.layoutParams as ConstraintLayout.LayoutParams; lp.bottomMargin = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 6.0f, Resources.getSystem().displayMetrics).toInt(); background.layoutParams = lp; + _videoView.setBackgroundColor(Color.parseColor("#00000000")) gestureControl.hideControls(); //videoControlsBar.visibility = View.VISIBLE;