about: add yrliet to supporters
This commit is contained in:
parent
23d561cc44
commit
f3261ded43
4 changed files with 20 additions and 1 deletions
|
@ -68,6 +68,9 @@ class AboutFragment : ViewBindingFragment<FragmentAboutBinding>() {
|
|||
binding.aboutLicenses.setOnClickListener { requireContext().openInBrowser(LINK_LICENSES) }
|
||||
binding.aboutProfile.setOnClickListener { requireContext().openInBrowser(LINK_PROFILE) }
|
||||
binding.aboutDonate.setOnClickListener { requireContext().openInBrowser(LINK_DONATE) }
|
||||
binding.aboutSupporterYrliet.setOnClickListener {
|
||||
requireContext().openInBrowser(LINK_YRLIET)
|
||||
}
|
||||
binding.aboutSupportersPromo.setOnClickListener {
|
||||
requireContext().openInBrowser(LINK_DONATE)
|
||||
}
|
||||
|
@ -97,5 +100,6 @@ class AboutFragment : ViewBindingFragment<FragmentAboutBinding>() {
|
|||
const val LINK_LICENSES = "$LINK_WIKI/Licenses"
|
||||
const val LINK_PROFILE = "https://github.com/OxygenCobalt"
|
||||
const val LINK_DONATE = "https://github.com/sponsors/OxygenCobalt"
|
||||
const val LINK_YRLIET = "https://github.com/yrliet"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/lbl_author_name"
|
||||
app:drawableStartCompat="@drawable/ic_author_24"
|
||||
app:drawableStartCompat="@drawable/ic_person_24"
|
||||
app:drawableTint="?attr/colorControlNormal"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
|
@ -224,6 +224,18 @@
|
|||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_supporter_yrliet"
|
||||
style="@style/Widget.Auxio.TextView.Icon.Clickable"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/sup_yrliet"
|
||||
app:drawableStartCompat="@drawable/ic_person_24"
|
||||
app:drawableTint="?attr/colorControlNormal"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/about_licenses" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_supporters_promo"
|
||||
style="@style/Widget.Auxio.TextView.Icon.Clickable"
|
||||
|
|
|
@ -15,4 +15,7 @@
|
|||
<string name="cdc_vorbis">Vorbis</string>
|
||||
<string name="cdc_opus">Opus</string>
|
||||
<string name="cdc_wav">Microsoft WAVE</string>
|
||||
|
||||
<!-- Supporter Namespace | Sponsor usernames -->
|
||||
<string name="sup_yrliet">yrliet</string>
|
||||
</resources>
|
Loading…
Reference in a new issue