Credit Glenn Sorrentino on About page

This commit is contained in:
Torsten Grote 2020-01-20 10:01:44 -03:00
parent 5d38f061d9
commit c92b9a3606
No known key found for this signature in database
GPG key ID: 3E5F77D92CF891FF
3 changed files with 17 additions and 2 deletions

View file

@ -23,6 +23,7 @@ class AboutDialogFragment : DialogFragment() {
val linkMovementMethod = LinkMovementMethod.getInstance() val linkMovementMethod = LinkMovementMethod.getInstance()
licenseView.movementMethod = linkMovementMethod licenseView.movementMethod = linkMovementMethod
authorView.movementMethod = linkMovementMethod authorView.movementMethod = linkMovementMethod
designView.movementMethod = linkMovementMethod
sponsorView.movementMethod = linkMovementMethod sponsorView.movementMethod = linkMovementMethod
} }

View file

@ -88,6 +88,19 @@
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/licenseView" /> app:layout_constraintTop_toBottomOf="@+id/licenseView" />
<TextView
android:id="@+id/designView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:text="@string/about_design"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/authorView" />
<TextView <TextView
android:id="@+id/sponsorView" android:id="@+id/sponsorView"
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -99,7 +112,7 @@
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0" app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/authorView" /> app:layout_constraintTop_toBottomOf="@+id/designView" />
<TextView <TextView
android:id="@+id/sourceCodeView" android:id="@+id/sourceCodeView"
@ -109,10 +122,10 @@
android:layout_marginTop="16dp" android:layout_marginTop="16dp"
android:layout_marginEnd="16dp" android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp" android:layout_marginBottom="16dp"
android:autoLink="web"
android:text="@string/about_source_code" android:text="@string/about_source_code"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
android:autoLink="web"
app:layout_constraintHorizontal_bias="0.0" app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/sponsorView" app:layout_constraintTop_toBottomOf="@+id/sponsorView"

View file

@ -120,6 +120,7 @@
<string name="about_summary">A backup application using Android\'s internal backup API.</string> <string name="about_summary">A backup application using Android\'s internal backup API.</string>
<string name="about_license">License: <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache2</a></string> <string name="about_license">License: <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache2</a></string>
<string name="about_author">Written by: <a href="https://github.com/stevesoltys">Steve Soltys</a> and <a href="https://blog.grobox.de">Torsten Grote</a></string> <string name="about_author">Written by: <a href="https://github.com/stevesoltys">Steve Soltys</a> and <a href="https://blog.grobox.de">Torsten Grote</a></string>
<string name="about_design">Design by: <a href="https://www.glennsorrentino.com/">Glenn Sorrentino</a></string>
<string name="about_sponsor">Sponsored by: <a href="https://www.calyxinstitute.org">Calyx Institute</a> for use in <a href="https://calyxos.org">CalyxOS</a></string> <string name="about_sponsor">Sponsored by: <a href="https://www.calyxinstitute.org">Calyx Institute</a> for use in <a href="https://calyxos.org">CalyxOS</a></string>
<string name="about_source_code">Source Code: https://github.com/stevesoltys/seedvault</string> <string name="about_source_code">Source Code: https://github.com/stevesoltys/seedvault</string>