fix: restore user manual URL (#72)

* fix: restore URL of user manual

* update base URL in pages config
This commit is contained in:
akesi seli 2024-11-04 18:02:48 +01:00 committed by GitHub
parent f164a5673c
commit e1043b6665
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 2 deletions

View File

@ -23,7 +23,7 @@ email: livefast.eattrash.raccoon@gmail.com
description: >- # this means to ignore newlines until "baseurl:"
Raccoon for Lemmy 🦝 documentation
baseurl: "/RaccoonForLemmy" # the subpath of your site, e.g. /blog
url: "https://example.com" # the base hostname & protocol for your site, e.g. http://example.com
url: "https://livefasteattrashraccoon.github.io" # the base hostname & protocol for your site, e.g. http://example.com
# Build settings
theme: minima

View File

@ -0,0 +1,5 @@
package com.livefast.eattrash.raccoonforlemmy.feature.settings.main
internal object SettingsConstants {
const val USER_MANUAL_URL = "https://livefasteattrashraccoon.github.io/RaccoonForLemmy/user_manual/main"
}

View File

@ -376,7 +376,7 @@ class SettingsScreen : Screen {
value = "",
disclosureIndicator = true,
onTap = {
uriHandler.openUri("https://example.com")
uriHandler.openUri(SettingsConstants.USER_MANUAL_URL)
},
)