Compare commits
2 Commits
12bbc2ef5f
...
1.0.0-beta
Author | SHA1 | Date | |
---|---|---|---|
ad1e3068cd
|
|||
de1f19c2b7
|
@ -550,8 +550,11 @@ object Crunchyroll {
|
||||
|
||||
return try {
|
||||
requestGet(playheadsEndpoint, parameters)
|
||||
}catch (ex: SerializationException) {
|
||||
Log.e(TAG, "SerializationException in upNextSeries().", ex)
|
||||
} catch (ex: SerializationException) {
|
||||
Log.e(TAG, "SerializationException in playheads().", ex)
|
||||
emptyMap()
|
||||
} catch (ex: Throwable) {
|
||||
Log.e(TAG, "Exception in playheads().", ex.cause)
|
||||
emptyMap()
|
||||
}
|
||||
}
|
||||
@ -571,7 +574,11 @@ object Crunchyroll {
|
||||
put("playhead", playhead)
|
||||
}
|
||||
|
||||
requestPost(playheadsEndpoint, parameters, json)
|
||||
try {
|
||||
requestPost(playheadsEndpoint, parameters, json)
|
||||
} catch (ex: Throwable) {
|
||||
Log.e(TAG, "Exception in postPlayheads()", ex.cause)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -8,7 +8,7 @@ buildscript {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.2.0'
|
||||
classpath 'com.android.tools.build:gradle:7.2.1'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
|
@ -1,4 +1,10 @@
|
||||
Dies ist der zweite beta Release von Teapod 1.0.0 mit Unterstützung für Cunchyroll.
|
||||
|
||||
* Unterstützung für Crunchyroll hinzugefügt (Ein premium Account wird benötigt)
|
||||
* Crunchyroll metadb Unterstützung hinzugefügt
|
||||
* Crunchyroll metadb Unterstützung hinzugefügt (#54)
|
||||
* Playhead Updates lassen sich nun ausschalten
|
||||
* Ähnliche Titel zum Mediafragment hinzugefügt
|
||||
* Empfehlungen für dich zum Homefragment hinzugefügt
|
||||
* Einen Crash beim login wurde behoben
|
||||
|
||||
Alle Änderungen https://git.mosad.xyz/Seil0/teapod/compare/1.0.0-beta1...1.0.0-beta2
|
||||
|
@ -1,4 +1,10 @@
|
||||
This is the second beta release of Teapod 1.0.0 with support for crunchyroll.
|
||||
|
||||
* Added support for crunchyroll (a premium account is needed)
|
||||
* Added crunchyroll metadb support
|
||||
* Support for crunchyroll (a premium account is needed)
|
||||
* Crunchyroll metadb support (#54)
|
||||
* Added a option to disable playhead updates/reporting
|
||||
* Show similar titles in the media fragment
|
||||
* Added recommendations to the home fragment
|
||||
* Fixed a crash on login, which made the app unusable
|
||||
|
||||
Full changelog https://git.mosad.xyz/Seil0/teapod/compare/1.0.0-beta1...1.0.0-beta2
|
||||
|
Reference in New Issue
Block a user