Skip to content

Commit

Permalink
Release v2.968
Browse files Browse the repository at this point in the history
  • Loading branch information
gzsombor committed Dec 2, 2019
1 parent d6cd38a commit 062e2e3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v2.968 - 02 Dec 2019
* Reduce the number of Youtube API calls
* Implement comment fetching with the NewPipe backend
* Fix the repeating search result problem with the NewPipe backend.
* Subscription feed refresh should not force the UI to the head of the list.
* Show error when comment fetching fails due to Youtube API error.

v2.967 - 02 Nov 2019
* Fix crash in Subscription feed retrieval
* Fix multiple, concurrent play, due to ExoPlayer creation
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ More features will be added in the near future.
| Official YouTube player support* |||
| Chromecast Support* |||
| Updates availability | Immediate | Normally up to 5 days |
| Download APK | [![Download SkyTube Extra APK](screenshots/download_apk.png)](https://github.com/ram-on/SkyTube/releases/download/v2.967/SkyTube-Extra-2.967.apk) | [![Download SkyTube (Vanilla) APK](https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Get_it_on_F-Droid.svg/200px-Get_it_on_F-Droid.svg.png)](https://f-droid.org/repository/browse/?fdid=free.rm.skytube.oss)
| Download APK | [![Download SkyTube Extra APK](screenshots/download_apk.png)](https://github.com/ram-on/SkyTube/releases/download/v2.968/SkyTube-Extra-2.968.apk) | [![Download SkyTube (Vanilla) APK](https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Get_it_on_F-Droid.svg/200px-Get_it_on_F-Droid.svg.png)](https://f-droid.org/repository/browse/?fdid=free.rm.skytube.oss)

_* powered by a closed-source, third-party library._

Expand Down
15 changes: 7 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@ android {
minSdkVersion 14
targetSdkVersion 28

versionName "2.967" // digits of the *fractional part* shall NOT be > than "9"
versionName "2.968" // digits of the *fractional part* shall NOT be > than "9"
versionCode buildNumber.toInteger()

// Third party devs: pls be ethical and change the below keys
buildConfigField 'String', 'YOUTUBE_API_KEYS_DEBUG', '"AIzaSyDU-ZZCyOB_kYkiMSZ6ooSipUZRukHU4ik"'
buildConfigField 'String[]', 'YOUTUBE_API_KEYS',
'{' +
'"AIzaSyDc3jDqguaCZSKpAwpvgkr0OwUZPFRvcX8",' +
'"AIzaSyAlDQa9lCW_YZ10_nml6mNygjEy37b0pmo",' +
'"AIzaSyCJjgfBdvHGoZCILxcTE1HeBd-_megm05o",' +
'"AIzaSyDR7X3W95oAJRaAmKxP9H0c7B3Q82r2iz8",' +
'"AIzaSyC6cJs9Aa_kEhXwleH2b448h9CiHYIfxnc",' +
'"AIzaSyDXZMFLY_9vXXmQIA_ql_6SftiRsLZbpxA",' +
'"AIzaSyBVxY5Tqtf95caxIXlwVlfHGe9e3PK0azg",' +
'"AIzaSyDjz67GD023IyFOBZdvfxg7SnLDgeOQ6yc"' +
'}'
Expand Down Expand Up @@ -49,9 +48,9 @@ android {
dimension "skytube"
buildConfigField 'String[]', 'YOUTUBE_API_KEYS',
'{' + // new keys
'"AIzaSyDc3jDqguaCZSKpAwpvgkr0OwUZPFRvcX8",' +
'"AIzaSyAlDQa9lCW_YZ10_nml6mNygjEy37b0pmo",' +
'"AIzaSyCJjgfBdvHGoZCILxcTE1HeBd-_megm05o",' +
'"AIzaSyDR7X3W95oAJRaAmKxP9H0c7B3Q82r2iz8",' +
'"AIzaSyC6cJs9Aa_kEhXwleH2b448h9CiHYIfxnc",' +
'"AIzaSyDXZMFLY_9vXXmQIA_ql_6SftiRsLZbpxA",' +
// old keys, but this can be used with FDroid
'"AIzaSyC27jgPDHkQsQK8TW4ngrQprSCnlMTJ04w",' +
'"AIzaSyCmXsaE6ZW14-1vM5zceWnGWnB73FkY7U4",' +
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

buildNumber=27
buildNumber=28

android.useAndroidX=true
android.enableJetifier=true
Expand Down

0 comments on commit 062e2e3

Please sign in to comment.