Browse Source

Merge pull request #100 from jahway603/master

Added Bug Reports web link to About section
dev
Duke Leto 4 years ago
committed by GitHub
parent
commit
d155c5542b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      README.md
  2. 41
      app/src/main/res/layout/activity_about.xml
  3. 11
      app/src/main/res/layout/activity_splash.xml
  4. 4
      app/src/main/res/values/strings.xml

4
README.md

@ -7,7 +7,7 @@ SilentDragon Android is an Android frontend for the desktop SilentDragon that le
## When will it be in my favorite app store?
The application is already available on the Google Play store here:
https://play.google.com/store/apps/details?id=org.myhush.silentdragon&hl=fr
https://play.google.com/store/apps/details?id=org.myhush.silentdragon
### Running SilentDragon
@ -114,7 +114,7 @@ This build can be directly uploaded to Google Play.
### Building a release APK for F-Droid
We should do this!
We should do this & will plan to using [this](https://gitlab.com/fdroid/fdroiddata/blob/master/CONTRIBUTING.md)
...

41
app/src/main/res/layout/activity_about.xml

@ -193,6 +193,45 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/GithubText" />
<TextView
android:id="@+id/BugReports"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:text="@string/bugreports"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/divider4" />
<TextView
android:id="@+id/BugReportsText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="2dp"
android:layout_marginEnd="16dp"
android:text="@string/bugreports_link"
android:textColorLink="@android:color/white"
android:autoLink="web"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/BugReports" />
<View
android:id="@+id/divider9"
android:layout_width="0dp"
android:layout_height="2dp"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:background="?android:attr/listDivider"
android:visibility="visible"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/BugReportsText" />
<TextView
android:id="@+id/Credit"
android:layout_width="0dp"
@ -204,7 +243,7 @@
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/divider4" />
app:layout_constraintTop_toBottomOf="@id/divider9" />
<TextView
android:id="@+id/CreditText"

11
app/src/main/res/layout/activity_splash.xml

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/splashLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black">
@ -10,6 +11,8 @@
android:id="@+id/splashImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/silentdragon_animated_startup_dark"/>
android:src="@drawable/silentdragon_animated_startup_dark"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

4
app/src/main/res/values/strings.xml

@ -89,11 +89,13 @@
<string name="discord">Join our Discord</string>
<string name="discord_link" translatable="false">https://www.myhush.org/discord/</string>
<string name="telegram">Visit our Telegram</string>
<string name="telegram_link" translatable="false">https://t.me/Hush_Coin</string>
<string name="telegram_link" translatable="false">https://www.myhush.org/telegram/</string>
<string name="twitter">Twitter</string>
<string name="twitter_link" translatable="false">https://www.myhush.org/twitter/</string>
<string name="github">GitHub</string>
<string name="github_link" translatable="false">https://github.com/MyHush/SilentDragonAndroid</string>
<string name="bugreports">Bug Reports</string>
<string name="bugreports_link" translatable="false">https://github.com/MyHush/SilentDragonAndroid/issues/new</string>
<string name="credits">Credits</string>
<string name="credits_link" translatable="false">http://www.myhush.org/credits_SDA/</string>
<string name="license">License</string>

Loading…
Cancel
Save