2019-07-03 01:19:45 +02:00
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-14 14:41:00 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-07-03 01:19:45 +02:00
|
|
|
<PreferenceCategory
|
2019-12-10 21:51:02 +01:00
|
|
|
android:key="category_emulator"
|
|
|
|
android:title="@string/emulator">
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.FolderPreference
|
2019-09-14 14:41:00 +02:00
|
|
|
app:key="search_location"
|
2020-05-28 21:27:25 +02:00
|
|
|
app:title="@string/search_location" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.ThemePreference
|
2019-12-10 21:51:02 +01:00
|
|
|
android:defaultValue="2"
|
|
|
|
android:entries="@array/app_theme"
|
|
|
|
android:entryValues="@array/app_theme_val"
|
|
|
|
app:key="app_theme"
|
|
|
|
app:title="@string/theme"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2020-04-12 17:17:51 +02:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="1"
|
|
|
|
android:entries="@array/layout_type"
|
|
|
|
android:entryValues="@array/layout_type_val"
|
|
|
|
app:key="layout_type"
|
|
|
|
app:title="@string/layout_type"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2020-04-17 22:32:17 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:summaryOff="@string/select_action_desc_off"
|
|
|
|
android:summaryOn="@string/select_action_desc_on"
|
|
|
|
app:key="select_action"
|
|
|
|
app:title="@string/select_action" />
|
2020-04-18 02:16:09 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:summaryOff="@string/perf_stats_desc_off"
|
|
|
|
android:summaryOn="@string/perf_stats_desc_on"
|
|
|
|
app:key="perf_stats"
|
|
|
|
app:title="@string/perf_stats" />
|
2019-07-24 22:19:43 +02:00
|
|
|
<ListPreference
|
2019-09-14 14:41:00 +02:00
|
|
|
android:defaultValue="2"
|
|
|
|
android:entries="@array/log_level"
|
|
|
|
android:entryValues="@array/log_level_val"
|
|
|
|
app:key="log_level"
|
|
|
|
app:title="@string/log_level"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:summaryOff="@string/log_compact_desc_off"
|
|
|
|
android:summaryOn="@string/log_compact_desc_on"
|
|
|
|
app:key="log_compact"
|
|
|
|
app:title="@string/log_compact" />
|
2020-07-19 22:35:50 +02:00
|
|
|
<emu.skyline.preference.CustomEditTextPreference
|
|
|
|
android:defaultValue="@string/username_default"
|
|
|
|
app:key="username_value"
|
2020-07-20 22:57:52 +02:00
|
|
|
app:limit="31"
|
2020-07-19 22:35:50 +02:00
|
|
|
app:title="@string/username" />
|
2019-07-24 22:19:43 +02:00
|
|
|
</PreferenceCategory>
|
2019-09-27 18:09:48 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="category_system"
|
|
|
|
android:title="@string/system">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
android:summaryOff="@string/handheld_enabled"
|
2019-09-27 18:09:48 +02:00
|
|
|
android:summaryOn="@string/docked_enabled"
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
app:key="operation_mode"
|
|
|
|
app:title="@string/use_docked" />
|
2019-09-27 18:09:48 +02:00
|
|
|
</PreferenceCategory>
|
2020-05-28 21:27:25 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="category_input"
|
|
|
|
android:title="@string/input"
|
|
|
|
app:initialExpandedChildrenCount="4">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:summaryOff="@string/osc_not_shown"
|
|
|
|
android:summaryOn="@string/osc_shown"
|
|
|
|
app:key="show_osc"
|
|
|
|
app:title="@string/show_osc" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="0" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="1" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="2" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="3" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="4" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="5" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="6" />
|
|
|
|
<emu.skyline.preference.ControllerPreference index="7" />
|
|
|
|
</PreferenceCategory>
|
2020-03-30 21:39:21 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="category_licenses"
|
|
|
|
android:title="@string/licenses"
|
|
|
|
app:initialExpandedChildrenCount="3">
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-04-19 23:04:05 +02:00
|
|
|
libraryLicense="@string/mpl2_license"
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryUrl="https://github.com/skyline-emu/skyline"
|
2020-04-12 18:12:46 +02:00
|
|
|
app:summary="@string/skyline_license_description"
|
2020-03-30 21:39:21 +02:00
|
|
|
app:title="@string/app_name" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryLicense="@string/fmtlib_license"
|
|
|
|
libraryUrl="https://github.com/fmtlib/fmt"
|
|
|
|
app:summary="@string/fmtlib_description"
|
|
|
|
app:title="@string/fmtlib" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://github.com/google/oboe"
|
|
|
|
app:summary="@string/oboe_description"
|
|
|
|
app:title="@string/oboe" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://github.com/KhronosGroup/Vulkan-Hpp"
|
|
|
|
app:summary="@string/vkhpp_description"
|
|
|
|
app:title="@string/vkhpp" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryLicense="@string/zlib_license"
|
|
|
|
libraryUrl="https://github.com/leethomason/tinyxml2"
|
|
|
|
app:summary="@string/txml2_description"
|
|
|
|
app:title="@string/txml2" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://github.com/tdebatty/java-string-similarity"
|
|
|
|
app:summary="@string/jssim_description"
|
|
|
|
app:title="@string/jssim" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://developer.android.com/jetpack/androidx"
|
|
|
|
app:summary="@string/andx_description"
|
|
|
|
app:title="@string/andx" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://github.com/material-components/material-components-android"
|
|
|
|
app:summary="@string/amat_description"
|
|
|
|
app:title="@string/amat" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
2020-03-30 21:39:21 +02:00
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://kotlinlang.org/api/latest/jvm/stdlib"
|
|
|
|
app:summary="@string/ktstd_description"
|
|
|
|
app:title="@string/ktstd" />
|
2020-04-12 18:12:46 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://material.io/resources/icons"
|
|
|
|
app:summary="@string/mtico_description"
|
|
|
|
app:title="@string/mtico" />
|
2020-07-04 22:52:07 +02:00
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://fonts.google.com/specimen/Open+Sans"
|
|
|
|
app:summary="@string/open_sans_description"
|
|
|
|
app:title="@string/open_sans" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
libraryLicense="@string/apache2_license"
|
|
|
|
libraryUrl="https://fonts.google.com/specimen/Roboto"
|
|
|
|
app:summary="@string/roboto_description"
|
|
|
|
app:title="@string/roboto" />
|
|
|
|
<emu.skyline.preference.LicensePreference
|
|
|
|
libraryLicense="@string/sil_open_font_license"
|
|
|
|
libraryUrl="https://fonts.google.com/specimen/Source+Sans+Pro"
|
|
|
|
app:summary="@string/source_sans_pro_description"
|
|
|
|
app:title="@string/source_sans_pro" />
|
2020-01-24 23:04:16 +01:00
|
|
|
</PreferenceCategory>
|
2019-07-03 01:19:45 +02:00
|
|
|
</androidx.preference.PreferenceScreen>
|