Compare commits
No commits in common. "5277c9e1fe2d6d88aff510d0025738391f9eb68e" and "37726bbf84860a646a057e6b2ed9e74e2253592e" have entirely different histories.
5277c9e1fe
...
37726bbf84
30 changed files with 11 additions and 56 deletions
|
@ -20,8 +20,8 @@ android {
|
||||||
resValue "string", "app_name", "NewPipe SponsorBlock"
|
resValue "string", "app_name", "NewPipe SponsorBlock"
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdk 33
|
targetSdk 33
|
||||||
versionCode 999
|
versionCode 998
|
||||||
versionName "0.27.2"
|
versionName "0.27.1"
|
||||||
|
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
|
||||||
|
@ -198,7 +198,7 @@ dependencies {
|
||||||
// name and the commit hash with the commit hash of the (pushed) commit you want to test
|
// name and the commit hash with the commit hash of the (pushed) commit you want to test
|
||||||
// This works thanks to JitPack: https://jitpack.io/
|
// This works thanks to JitPack: https://jitpack.io/
|
||||||
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
||||||
implementation 'com.github.TeamNewPipe:NewPipeExtractor:v0.24.2'
|
implementation 'com.github.TeamNewPipe:NewPipeExtractor:v0.24.1'
|
||||||
implementation 'com.github.TeamNewPipe:NoNonsense-FilePicker:5.0.0'
|
implementation 'com.github.TeamNewPipe:NoNonsense-FilePicker:5.0.0'
|
||||||
|
|
||||||
/** Checkstyle **/
|
/** Checkstyle **/
|
||||||
|
|
1
app/proguard-rules.pro
vendored
1
app/proguard-rules.pro
vendored
|
@ -7,7 +7,6 @@
|
||||||
-keep class org.schabi.newpipe.extractor.timeago.patterns.** { *; }
|
-keep class org.schabi.newpipe.extractor.timeago.patterns.** { *; }
|
||||||
-keep class org.mozilla.javascript.** { *; }
|
-keep class org.mozilla.javascript.** { *; }
|
||||||
-keep class org.mozilla.classfile.ClassFileWriter
|
-keep class org.mozilla.classfile.ClassFileWriter
|
||||||
-dontwarn org.mozilla.javascript.JavaToJSONConverters
|
|
||||||
-dontwarn org.mozilla.javascript.tools.**
|
-dontwarn org.mozilla.javascript.tools.**
|
||||||
|
|
||||||
## Rules for ExoPlayer
|
## Rules for ExoPlayer
|
||||||
|
|
|
@ -27,6 +27,8 @@ import org.schabi.newpipe.databinding.ActivityRecaptchaBinding;
|
||||||
import org.schabi.newpipe.extractor.utils.Utils;
|
import org.schabi.newpipe.extractor.utils.Utils;
|
||||||
import org.schabi.newpipe.util.ThemeHelper;
|
import org.schabi.newpipe.util.ThemeHelper;
|
||||||
|
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Created by beneth <bmauduit@beneth.fr> on 06.12.16.
|
* Created by beneth <bmauduit@beneth.fr> on 06.12.16.
|
||||||
*
|
*
|
||||||
|
@ -188,10 +190,11 @@ public class ReCaptchaActivity extends AppCompatActivity {
|
||||||
String abuseCookie = url.substring(abuseStart + 13, abuseEnd);
|
String abuseCookie = url.substring(abuseStart + 13, abuseEnd);
|
||||||
abuseCookie = Utils.decodeUrlUtf8(abuseCookie);
|
abuseCookie = Utils.decodeUrlUtf8(abuseCookie);
|
||||||
handleCookies(abuseCookie);
|
handleCookies(abuseCookie);
|
||||||
} catch (IllegalArgumentException | StringIndexOutOfBoundsException e) {
|
} catch (UnsupportedEncodingException | StringIndexOutOfBoundsException e) {
|
||||||
if (MainActivity.DEBUG) {
|
if (MainActivity.DEBUG) {
|
||||||
Log.e(TAG, "handleCookiesFromUrl: invalid google abuse starting at "
|
e.printStackTrace();
|
||||||
+ abuseStart + " and ending at " + abuseEnd + " for url " + url, e);
|
Log.d(TAG, "handleCookiesFromUrl: invalid google abuse starting at "
|
||||||
|
+ abuseStart + " and ending at " + abuseEnd + " for url " + url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,7 @@ import org.schabi.newpipe.util.FilePickerActivityHelper;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
public class DownloadSettingsFragment extends BasePreferenceFragment {
|
public class DownloadSettingsFragment extends BasePreferenceFragment {
|
||||||
|
@ -124,7 +125,7 @@ public class DownloadSettingsFragment extends BasePreferenceFragment {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
rawUri = decodeUrlUtf8(rawUri);
|
rawUri = decodeUrlUtf8(rawUri);
|
||||||
} catch (final IllegalArgumentException e) {
|
} catch (final UnsupportedEncodingException e) {
|
||||||
// nothing to do
|
// nothing to do
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
تم إصلاح YouTube الذي لا يقوم بتشغيل أي دفق
|
|
|
@ -1 +0,0 @@
|
||||||
YouTube-un heç bir yayım oynatmaması düzəldildi
|
|
|
@ -1 +0,0 @@
|
||||||
Opraveno nepřehrávání jakéhokoli streamu ve službě YouTube
|
|
|
@ -1 +0,0 @@
|
||||||
Behoben, dass YouTube keinen Stream abspielte
|
|
|
@ -1,12 +0,0 @@
|
||||||
This hotfix release fixes HTTP 403 errors in the middle of YouTube videos.
|
|
||||||
|
|
||||||
New
|
|
||||||
• [SoundCloud] Add support for on.soundcloud.com URLs
|
|
||||||
|
|
||||||
Improved
|
|
||||||
• [Bandcamp] Show additional info in radio kiosk
|
|
||||||
|
|
||||||
Fixed
|
|
||||||
• [YouTube] Fix occasional HTTP 403 errors at the beginning or in the middle of videos
|
|
||||||
• [YouTube] Extract avatar and banner from more channel header types
|
|
||||||
• [Bandcamp] Fix various bugs and always use HTTPS
|
|
|
@ -1 +0,0 @@
|
||||||
Arreglo en YouTube no reproduciendo flujos
|
|
|
@ -1 +0,0 @@
|
||||||
مشکل عدم نمایش پخشزنده برطرف شد
|
|
|
@ -1 +0,0 @@
|
||||||
Correction de YouTube qui ne lisait aucun média
|
|
|
@ -1 +0,0 @@
|
||||||
תוקנה התקלה ש־YouTube לא מנגן אף תזרים
|
|
|
@ -1 +0,0 @@
|
||||||
फिक्स्ड YouTube कोई स्ट्रीम नहीं चला रहा है
|
|
|
@ -1 +0,0 @@
|
||||||
Memperbaiki YouTube yang tidak memutar streaming apa pun
|
|
|
@ -1,12 +0,0 @@
|
||||||
Questo aggiornamento hotfix risolve gli errori HTTP 403 nel mezzo dei video di YouTube.
|
|
||||||
|
|
||||||
Novità
|
|
||||||
• [SoundCloud] Aggiunto il supporto per gli URL on.soundcloud.com
|
|
||||||
|
|
||||||
Migliorie
|
|
||||||
• [Bandcamp] Mostra informazioni aggiuntive nel chiosco della radio
|
|
||||||
|
|
||||||
Correzioni
|
|
||||||
• [YouTube] Corretti errori HTTP 403 occasionali all'inizio o nel mezzo dei video
|
|
||||||
• [YouTube] Estrazione avatar e banner da più tipi di canali
|
|
||||||
• [Bandcamp] Risolti vari bug e forzato l'uso di HTTPS
|
|
|
@ -1 +0,0 @@
|
||||||
გაასწორა YouTube არ უკრავს არცერთ ნაკადს
|
|
|
@ -1 +0,0 @@
|
||||||
YouTube speelt geen stream af opgelost
|
|
|
@ -1 +0,0 @@
|
||||||
ਸਥਿਰ YouTube ਕੋਈ ਸਟ੍ਰੀਮ ਨਹੀਂ ਚਲਾ ਰਿਹਾ
|
|
|
@ -1 +0,0 @@
|
||||||
Corrigido YouTube não reproduzir qualquer transmissão
|
|
|
@ -1 +0,0 @@
|
||||||
Corrigido YouTube não reproduzir nenhuma transmissão
|
|
|
@ -1 +0,0 @@
|
||||||
Corrigido YouTube não reproduzir nenhuma transmissão
|
|
|
@ -1 +0,0 @@
|
||||||
Исправлено: YouTube не воспроизводил никакие потоки
|
|
|
@ -1 +0,0 @@
|
||||||
Åtgärdat att YouTube inte spelar någon stream
|
|
|
@ -1 +0,0 @@
|
||||||
YouTube'un herhangi bir akışı oynatmaması düzeltildi
|
|
|
@ -1 +0,0 @@
|
||||||
Виправлено проблему невідтворюваності трансляцій
|
|
|
@ -1 +0,0 @@
|
||||||
Đã sửa lỗi YouTube không phát bất kỳ luồng nào
|
|
|
@ -1 +0,0 @@
|
||||||
修复YouTube无法播放任何视频
|
|
|
@ -1 +0,0 @@
|
||||||
修正 YouTube 無法播放任何串流
|
|
|
@ -1 +0,0 @@
|
||||||
修正咗 YouTube 乜嘢實況串流都播唔到嘅問題
|
|
Loading…
Reference in a new issue