Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Kotlin 1.1.4. Add discord link in about

Cette révision appartient à :
inorichi 2017-08-28 10:00:13 +02:00
Parent 537693f5cf
révision 3c550c1781
2 fichiers modifiés avec 13 ajouts et 1 suppressions

Voir le fichier

@ -217,7 +217,7 @@ dependencies {
}
buildscript {
ext.kotlin_version = '1.1.3'
ext.kotlin_version = '1.1.4'
repositories {
mavenCentral()
}

Voir le fichier

@ -22,6 +22,9 @@ import java.text.ParseException
import java.text.SimpleDateFormat
import java.util.*
import eu.kanade.tachiyomi.data.preference.PreferenceKeys as Keys
import android.content.Intent
import android.net.Uri
class SettingsAboutController : SettingsController() {
@ -66,6 +69,15 @@ class SettingsAboutController : SettingsController() {
isVisible = false
}
}
preference {
title = "Discord"
val url = "https://discord.gg/WrBkRk4"
summary = url
onClick {
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
startActivity(intent)
}
}
preference {
titleRes = R.string.version
summary = if (BuildConfig.DEBUG)