From 5d35dc8aa29d1cd37a4c3926cd7012d353c28e43 Mon Sep 17 00:00:00 2001 From: OxygenCobalt Date: Fri, 18 Dec 2020 20:14:53 -0700 Subject: [PATCH] Fix info links Fix links from AboutDialog to actually link to their intended locations. --- LICENSES.md | 12 ------------ .../org/oxycblt/auxio/settings/ui/AboutDialog.kt | 4 ++-- 2 files changed, 2 insertions(+), 14 deletions(-) delete mode 100644 LICENSES.md diff --git a/LICENSES.md b/LICENSES.md deleted file mode 100644 index 0f6588495..000000000 --- a/LICENSES.md +++ /dev/null @@ -1,12 +0,0 @@ -# Licenses - -Auxio uses a number of third-party libraries, which are listed below with their licenses: - -| Library Name | Author(s) | Purpose | License | -|--------------|-----------|---------|---------| -| [ExoPlayer](https://github.com/google/ExoPlayer) | [Google](https://github.com/google) | Music Playback | Apache-2.0 | -| [Coil](https://github.com/coil-kt/coil) | [coil-kt](https://github.com/coil-kt) | Image Loading | Apache-2.0 | -| [Indicator Fast Scroll](https://github.com/reddit/IndicatorFastScroll) | [Reddit](https://github.com/reddit) | Fast Scrolling | MIT | -| [Material Dialogs](https://github.com/afollestad/material-dialogs) | [Aiden Follestad](https://github.com/afollestad) | Accent Dialog | Apache-2.0 | -| [ktlint](https://github.com/pinterest/ktlint) | [Pinterest](https://github.com/pinterest) | Code Formatting | MIT | -| [LeakCanary](https://github.com/square/leakcanary) | [Square](https://github.com/square) | Memory leak detection | Apache-2.0 | \ No newline at end of file diff --git a/app/src/main/java/org/oxycblt/auxio/settings/ui/AboutDialog.kt b/app/src/main/java/org/oxycblt/auxio/settings/ui/AboutDialog.kt index 9fb6a8d8a..f6b1b105e 100644 --- a/app/src/main/java/org/oxycblt/auxio/settings/ui/AboutDialog.kt +++ b/app/src/main/java/org/oxycblt/auxio/settings/ui/AboutDialog.kt @@ -104,8 +104,8 @@ class AboutDialog : BottomSheetDialogFragment() { companion object { private const val LINK_CODEBASE = "https://github.com/oxygencobalt/Auxio" - private const val LINK_FAQ = "$LINK_CODEBASE/blob/master/FAQ.md" - private const val LINK_LICENSES = "$LINK_CODEBASE/blob/master/LICENSES.md" + private const val LINK_FAQ = "$LINK_CODEBASE/blob/master/info/FAQ.md" + private const val LINK_LICENSES = "$LINK_CODEBASE/blob/master/info/LICENSES.md" val LINKS = arrayOf(LINK_CODEBASE, LINK_FAQ, LINK_LICENSES) }