Update tachiyomi.org links

This commit is contained in:
Jays2Kings 2023-10-11 15:02:23 -07:00
parent dc1825d2dd
commit 13b550fe21
9 changed files with 10 additions and 10 deletions

View file

@ -3,7 +3,7 @@
I acknowledge that:
- If this is a bug or a feature, I will not use this issue template and instead use one of the options on the previous page
- I have tried the troubleshooting guide: https://tachiyomi.org/help/guides/troubleshooting-problems/
- I have tried the troubleshooting guide: https://tachiyomi.org/docs/guides/troubleshooting/
- I have updated to the latest version of the app (latest J2K is v1.7.1)
- I will not repeat an issue already requested
- If this is an request for an extension/source, that I should be opening an issue in https://github.com/tachiyomiorg/tachiyomi-extensions

View file

@ -336,7 +336,7 @@ class LibraryUpdateNotifier(private val context: Context) {
private const val MAX_CHAPTERS = 5
private const val TITLE_MAX_LEN = 45
private const val ICON_SIZE = 192
const val HELP_SKIPPED_URL = "https://tachiyomi.org/help/faq/#why-does-global-update-skip-some-entries"
const val HELP_WARNING_URL = "https://tachiyomi.org/help/faq/#why-does-the-app-warn-about-large-bulk-updates-and-downloads"
const val HELP_SKIPPED_URL = "https://tachiyomi.org/docs/faq/library#why-is-global-update-skipping-entries"
const val HELP_WARNING_URL = "https://tachiyomi.org/docs/faq/library#why-am-i-warned-about-large-bulk-updates-and-downloads"
}
}

View file

@ -29,7 +29,7 @@ import java.util.zip.ZipFile
class LocalSource(private val context: Context) : CatalogueSource, UnmeteredSource {
companion object {
const val ID = 0L
const val HELP_URL = "https://tachiyomi.org/help/guides/local-manga/"
const val HELP_URL = "https://tachiyomi.org/docs/guides/local-source/"
private const val COVER_NAME = "cover.jpg"
private val LATEST_THRESHOLD = TimeUnit.MILLISECONDS.convert(7, TimeUnit.DAYS)

View file

@ -201,7 +201,7 @@ class ExtensionDetailsController(bundle: Bundle? = null) :
val extension = presenter.extension!!
if (!extension.hasReadme) {
openInBrowser("https://tachiyomi.org/help/faq/#extensions")
openInBrowser("https://tachiyomi.org/docs/faq/browse/extensions")
return
}

View file

@ -1101,7 +1101,7 @@ open class LibraryController(
if (!hasActiveFilters) {
listOf(
EmptyView.Action(R.string.getting_started_guide) {
activity?.openInBrowser("https://tachiyomi.org/help/guides/getting-started/#installing-an-extension")
activity?.openInBrowser("https://tachiyomi.org/docs/guides/getting-started#_2-adding-sources")
},
)
} else {

View file

@ -129,6 +129,6 @@ class OverflowDialog(activity: MainActivity) : Dialog(activity, R.style.Overflow
}
private companion object {
private const val URL_HELP = "https://tachiyomi.org/help/"
private const val URL_HELP = "https://tachiyomi.org/docs/guides/troubleshooting/"
}
}

View file

@ -309,4 +309,4 @@ private const val CODE_BACKUP_DIR = 503
private const val CODE_BACKUP_CREATE = 504
private const val CODE_BACKUP_RESTORE = 505
private const val HELP_URL = "https://tachiyomi.org/help/guides/backups/"
private const val HELP_URL = "https://tachiyomi.org/docs/guides/backups"

View file

@ -101,6 +101,6 @@ class SettingsMainController : SettingsController(), FloatingSearchInterface {
}
private companion object {
private const val URL_HELP = "https://tachiyomi.org/help/"
private const val URL_HELP = "https://tachiyomi.org/docs/guides/troubleshooting/"
}
}

View file

@ -739,6 +739,6 @@ class BrowseController :
data class SmartSearchConfig(val origTitle: String, val origMangaId: Long) : Parcelable
companion object {
const val HELP_URL = "https://tachiyomi.org/help/guides/source-migration/"
const val HELP_URL = "https://tachiyomi.org/docs/guides/source-migration"
}
}