From f72d0a0f97e8bae52d74ea40766303ebc92ce1ce Mon Sep 17 00:00:00 2001 From: Yuriy Liskov Date: Mon, 23 Nov 2020 00:13:58 +0200 Subject: [PATCH] bump to 10.17 --- .../common/app/models/playback/managers/VideoLoader.java | 4 +++- smarttubetv/build.gradle | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/common/src/main/java/com/liskovsoft/smartyoutubetv2/common/app/models/playback/managers/VideoLoader.java b/common/src/main/java/com/liskovsoft/smartyoutubetv2/common/app/models/playback/managers/VideoLoader.java index 5d3757c2c3..d78086ce4b 100644 --- a/common/src/main/java/com/liskovsoft/smartyoutubetv2/common/app/models/playback/managers/VideoLoader.java +++ b/common/src/main/java/com/liskovsoft/smartyoutubetv2/common/app/models/playback/managers/VideoLoader.java @@ -119,7 +119,9 @@ public void onPlayEnd() { switch (mRepeatMode) { case PlaybackUiController.REPEAT_ALL: onNextClicked(); - mController.showControls(true); + if (!mController.isInPIPMode()) { + mController.showControls(true); + } break; case PlaybackUiController.REPEAT_ONE: loadVideo(mLastVideo); diff --git a/smarttubetv/build.gradle b/smarttubetv/build.gradle index c776bee5ab..b15ffdf6a7 100644 --- a/smarttubetv/build.gradle +++ b/smarttubetv/build.gradle @@ -48,8 +48,8 @@ android { applicationId "com.liskovsoft.smarttubetv" minSdkVersion project.properties.minSdkVersion targetSdkVersion project.properties.targetSdkVersion - versionCode 156 - versionName "10.16" + versionCode 157 + versionName "10.17" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"