Rename Tachidesk to Suwayomi (#14828)

* Rename Tachidesk to Suwayomi

* keep pkgName the same

* keep Log tag the same

* server is named Tachidesk, rename to avoid confusion
This commit is contained in:
Aria Moradi 2023-01-06 18:45:35 +03:30 committed by GitHub
parent 5c4123a582
commit 92bd338df9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -3,10 +3,10 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlinx-serialization'
ext {
extName = 'Tachidesk'
extName = 'Suwayomi'
pkgNameSuffix = 'all.tachidesk'
extClass = '.Tachidesk'
extVersionCode = 7
extVersionCode = 8
}
dependencies {

View File

@ -35,12 +35,13 @@ import uy.kohesive.injekt.api.get
import uy.kohesive.injekt.injectLazy
class Tachidesk : ConfigurableSource, UnmeteredSource, HttpSource() {
override val name = "Tachidesk"
override val name = "Suwayomi"
override val id = 3100117499901280806L
override val baseUrl by lazy { getPrefBaseUrl() }
private val baseLogin by lazy { getPrefBaseLogin() }
private val basePassword by lazy { getPrefBasePassword() }
override val lang = "en"
override val lang = "all"
override val supportsLatest = false
private val json: Json by injectLazy()