Skip to content

Commit 45cd482

Browse files
Increase version number
1 parent b7aa047 commit 45cd482

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

advancedDownloader/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "at.huber.youtubeDownloader"
88
minSdkVersion 14
99
targetSdkVersion 22
10-
versionCode 4
11-
versionName "1.9"
10+
versionCode 5
11+
versionName "2.1"
1212
}
1313
buildTypes {
1414
release {

sampleApp/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
minSdkVersion 14
99
//noinspection ExpiredTargetSdkVersion
1010
targetSdkVersion 22
11-
versionCode 1
12-
versionName "1.0"
11+
versionCode 2
12+
versionName "2.1"
1313
}
1414
}
1515

youtubeExtractor/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
defaultConfig {
77
minSdkVersion 14
88
targetSdkVersion 28
9-
versionCode 1
10-
versionName "1.0"
9+
versionCode 2
10+
versionName "2.1"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
}
1313
}

youtubeExtractor/src/main/java/at/huber/youtubeExtractor/YouTubeExtractor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public abstract class YouTubeExtractor extends AsyncTask<String, Void, SparseArr
8080

8181
private static final Pattern patVariableFunction = Pattern.compile("([{; =])([a-zA-Z$][a-zA-Z0-9$]{0,2})\\.([a-zA-Z$][a-zA-Z0-9$]{0,2})\\(");
8282
private static final Pattern patFunction = Pattern.compile("([{; =])([a-zA-Z$_][a-zA-Z0-9$]{0,2})\\(");
83-
83+
8484
private static final Pattern patDecryptionJsFile = Pattern.compile("\\\\/s\\\\/player\\\\/([^\"]+?)\\.js");
8585
private static final Pattern patSignatureDecFunction = Pattern.compile("\\b([\\w$]{2})\\s*=\\s*function\\((\\w+)\\)\\{\\s*\\2=\\s*\\2\\.split\\(\"\"\\)\\s*;");
8686

0 commit comments

Comments
 (0)