From dbc4e01c17bee4bcf761e5607b2dd68ec2b428a5 Mon Sep 17 00:00:00 2001
From: TobiGr
Date: Thu, 29 Jul 2021 12:31:33 +0200
Subject: [PATCH 1/3] Fix JDoc
---
.../services/youtube/YoutubeThrottlingDecrypter.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingDecrypter.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingDecrypter.java
index 4f10e8c58..eda749163 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingDecrypter.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingDecrypter.java
@@ -17,13 +17,13 @@ import java.util.regex.Pattern;
* applying the cipher on it and returning the resulting url which is not throttled.
*
*
- *
+ *
* https://r5---sn-4g5ednsz.googlevideo.com/videoplayback?n=VVF2xyZLVRZZxHXZ&other=other
- *
+ *
* becomes
- *
+ *
* https://r5---sn-4g5ednsz.googlevideo.com/videoplayback?n=iHywZkMipkszqA&other=other
- *
+ *
*
*
* Decoding the "n" parameter is time intensive. For this reason, the results are cached.
From b62fe7141e59b362f874dfec3d03d79badd4a3a9 Mon Sep 17 00:00:00 2001
From: TobiGr
Date: Thu, 29 Jul 2021 12:34:04 +0200
Subject: [PATCH 2/3] Fix JDoc 2
---
.../services/youtube/YoutubeThrottlingDecrypter.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingDecrypter.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingDecrypter.java
index eda749163..8a8db68c3 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingDecrypter.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeThrottlingDecrypter.java
@@ -18,11 +18,11 @@ import java.util.regex.Pattern;
*
*
*
- * https://r5---sn-4g5ednsz.googlevideo.com/videoplayback?n=VVF2xyZLVRZZxHXZ&other=other
+ * https://r5---sn-4g5ednsz.googlevideo.com/videoplayback?n=VVF2xyZLVRZZxHXZ&other=other
*
* becomes
*
- * https://r5---sn-4g5ednsz.googlevideo.com/videoplayback?n=iHywZkMipkszqA&other=other
+ * https://r5---sn-4g5ednsz.googlevideo.com/videoplayback?n=iHywZkMipkszqA&other=other
*
*
*
From 4b5907e18cec6ff1ab42cdb2fdbc93bff9818cc5 Mon Sep 17 00:00:00 2001
From: Stypox
Date: Tue, 3 Aug 2021 20:33:24 +0200
Subject: [PATCH 3/3] Release version 0.21.8
---
README.md | 2 +-
build.gradle | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 710a0e8da..66bbb7c02 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ NewPipe Extractor is available at JitPack's Maven repo.
If you're using Gradle, you could add NewPipe Extractor as a dependency with the following steps:
1. Add `maven { url 'https://jitpack.io' }` to the `repositories` in your `build.gradle`.
-2. Add `implementation 'com.github.TeamNewPipe:NewPipeExtractor:v0.21.7'`the `dependencies` in your `build.gradle`. Replace `v0.21.7` with the latest release.
+2. Add `implementation 'com.github.TeamNewPipe:NewPipeExtractor:v0.21.8'`the `dependencies` in your `build.gradle`. Replace `v0.21.8` with the latest release.
**Note:** To use NewPipe Extractor in projects with a `minSdkVersion` below 26, [API desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring) is required.
diff --git a/build.gradle b/build.gradle
index b3c9a6e02..674903596 100644
--- a/build.gradle
+++ b/build.gradle
@@ -8,7 +8,7 @@ allprojects {
sourceCompatibility = 1.8
targetCompatibility = 1.8
- version 'v0.21.7'
+ version 'v0.21.8'
group 'com.github.TeamNewPipe'
repositories {