Clarify image support in log exports
This commit is contained in:
@@ -19,6 +19,8 @@ decisions, physical device testing, and final behaviour are still manually revie
|
|||||||
You can choose which event types to record, set app-specific allow/block lists,
|
You can choose which event types to record, set app-specific allow/block lists,
|
||||||
and suppress routine progress or timer updates. The log view can be tailored,
|
and suppress routine progress or timer updates. The log view can be tailored,
|
||||||
expanded for long entries, and exported as CSV, aligned text, or an HTML ZIP.
|
expanded for long entries, and exported as CSV, aligned text, or an HTML ZIP.
|
||||||
|
Only the HTML ZIP includes saved notification images; CSV and aligned text use
|
||||||
|
an `[image]` marker instead.
|
||||||
|
|
||||||
## Privacy
|
## Privacy
|
||||||
|
|
||||||
@@ -42,4 +44,4 @@ Tested Android versions:
|
|||||||
- OneUI 8.0 (Android 16) on a Galaxy Z Fold 5
|
- OneUI 8.0 (Android 16) on a Galaxy Z Fold 5
|
||||||
- AOSP Android 14, 15, and 16 (API 34, 35, and 36) on an emulator
|
- AOSP Android 14, 15, and 16 (API 34, 35, and 36) on an emulator
|
||||||
- Google APIs Android 15 and 16 (API 35 and 36) on an emulator
|
- Google APIs Android 15 and 16 (API 35 and 36) on an emulator
|
||||||
- LineageOS 22 on Android 15 and LineageOS 23 on Android 16 on an emulator
|
- LineageOS 22 on Android 15 and LineageOS 23 on Android 16 on an emulator
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ class SettingsFragment : Fragment(R.layout.fragment_settings) {
|
|||||||
|
|
||||||
private fun chooseExportFormat() {
|
private fun chooseExportFormat() {
|
||||||
MaterialAlertDialogBuilder(requireContext())
|
MaterialAlertDialogBuilder(requireContext())
|
||||||
.setItems(arrayOf("CSV", "Formatted text", "HTML ZIP")) { _, which ->
|
.setItems(arrayOf("CSV (no images)", "Formatted text (no images)", "HTML ZIP")) { _, which ->
|
||||||
pendingExport = ExportFormat.entries[which]
|
pendingExport = ExportFormat.entries[which]
|
||||||
createDocument.launch("notification-log.${pendingExport!!.extension}")
|
createDocument.launch("notification-log.${pendingExport!!.extension}")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user