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
|
||||||
|
|
||||||
|
|||||||
@@ -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