Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
d83e9ae6
Commit
d83e9ae6
authored
10 months ago
by
Aleksandras Kostarevas
Browse files
Options
Downloads
Patches
Plain Diff
Add GitHub issue tracker URL and subtitles
parent
360c2f4a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/org/futo/inputmethod/latin/uix/settings/pages/Help.kt
+7
-4
7 additions, 4 deletions
...src/org/futo/inputmethod/latin/uix/settings/pages/Help.kt
with
7 additions
and
4 deletions
java/src/org/futo/inputmethod/latin/uix/settings/pages/Help.kt
+
7
−
4
View file @
d83e9ae6
...
...
@@ -69,17 +69,20 @@ fun HelpScreen(navController: NavHostController = rememberNavController()) {
Tip
(
"We want to hear from you! If you're reporting an issue, your version may be relevant: v${BuildConfig.VERSION_NAME}"
)
NavigationItem
(
title
=
"Wiki"
,
style
=
NavigationItemStyle
.
Misc
,
navigate
=
{
NavigationItem
(
title
=
"Wiki"
,
subtitle
=
"Wanna read more about the project? Read the wiki"
,
style
=
NavigationItemStyle
.
Misc
,
navigate
=
{
context
.
openURI
(
"https://gitlab.futo.org/alex/keyboard-wiki/-/wikis/FUTO-Keyboard"
)
})
NavigationItem
(
title
=
"Discord Server"
,
style
=
NavigationItemStyle
.
Misc
,
navigate
=
{
NavigationItem
(
title
=
"Discord Server"
,
subtitle
=
"Wanna talk but don't like Zulip? Chat here"
,
style
=
NavigationItemStyle
.
Misc
,
navigate
=
{
context
.
openURI
(
"https://keyboard.futo.org/discord"
)
})
NavigationItem
(
title
=
"FUTO Chat"
,
style
=
NavigationItemStyle
.
Misc
,
navigate
=
{
NavigationItem
(
title
=
"FUTO Chat"
,
subtitle
=
"Wanna talk but don't like Discord? Chat here"
,
style
=
NavigationItemStyle
.
Misc
,
navigate
=
{
context
.
openURI
(
"https://chat.futo.org/"
)
})
NavigationItem
(
title
=
"Email keyboard@futo.org"
,
style
=
NavigationItemStyle
.
Mail
,
navigate
=
{
NavigationItem
(
title
=
"Email keyboard@futo.org"
,
subtitle
=
"Private feedback or help? Email us"
,
style
=
NavigationItemStyle
.
Mail
,
navigate
=
{
context
.
openURI
(
"mailto:keyboard@futo.org"
)
})
NavigationItem
(
title
=
"Public issue tracker"
,
subtitle
=
"Specific bug or feature request? Post here"
,
style
=
NavigationItemStyle
.
Misc
,
navigate
=
{
context
.
openURI
(
"https://github.com/futo-org/android-keyboard/issues"
)
})
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment