mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-15 10:46:12 -04:00
- Change "No primary device" card to "No device configured" with clearer messaging - Replace troubleshoot action with "Manage devices" button that navigates to device manager - Move troubleshooter from overview to Settings → Support section - Add concise troubleshooter description for settings preference - Update navigation to support troubleshooter access from settings - Improve user experience by providing more intuitive device management flow
34 lines
1.6 KiB
XML
34 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<eu.darken.capod.common.preferences.IntentPreference
|
|
android:icon="@drawable/ic_discord_onsurface"
|
|
android:summary="@string/discord_description"
|
|
android:title="@string/discord_label">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://discord.gg/rrxxng35jq" />
|
|
</eu.darken.capod.common.preferences.IntentPreference>
|
|
<eu.darken.capod.common.preferences.IntentPreference
|
|
android:icon="@drawable/ic_github_onsurface"
|
|
android:summary="@string/issue_tracker_description"
|
|
android:title="@string/issue_tracker_label">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/d4rken-org/capod/issues" />
|
|
</eu.darken.capod.common.preferences.IntentPreference>
|
|
|
|
<PreferenceCategory app:title="@string/settings_category_other_label">
|
|
<Preference
|
|
android:icon="@drawable/ic_baseline_settings_24"
|
|
android:key="support.troubleshooter"
|
|
android:summary="@string/troubleshooter_summary"
|
|
android:title="@string/troubleshooter_title" />
|
|
<Preference
|
|
android:icon="@drawable/ic_baseline_bug_report_24"
|
|
android:key="support.debuglog"
|
|
android:summary="@string/support_debuglog_desc"
|
|
android:title="@string/support_debuglog_label" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|