From daab6e44710ec5cd72db982a92d6a33e3cc537b1 Mon Sep 17 00:00:00 2001 From: Brigs Date: Thu, 2 Jul 2026 20:17:54 -0400 Subject: [PATCH] Add threaded conversation view to Burner - Messages Wire the LAVA conversation data_view onto the existing columns: threads keyed and labeled by Contact, direction 'Outgoing' as sent, received bubbles labeled with the contact number and sent bubbles with the static 'Local User' label (sentMessageStaticLabel). No schema or parsing changes. --- scripts/artifacts/burnerMessages.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/scripts/artifacts/burnerMessages.py b/scripts/artifacts/burnerMessages.py index ef676e6a..a584f123 100644 --- a/scripts/artifacts/burnerMessages.py +++ b/scripts/artifacts/burnerMessages.py @@ -6,13 +6,25 @@ "author": "Heather Charpentier (With Tons of Help from Alexis Brignoni!)", "version": "0.0.1", "creation_date": "2024-02-15", - "last_update_date": "2024-02-15", + "last_update_date": "2026-07-02", "requirements": "none", "category": "Burner", "notes": "", "paths": ('*/data/com.adhoclabs.burner/databases/burnerDatabase.db*',), "output_types": "standard", "artifact_icon": "message-square", + "data_views": { + "conversation": { + "conversationDiscriminatorColumn": "Contact", + "conversationLabelColumn": "Contact", + "textColumn": "Message Text", + "directionColumn": "Direction", + "directionSentValue": "Outgoing", + "timeColumn": "Timestamp", + "senderColumn": "Contact", + "sentMessageStaticLabel": "Local User" + } + }, } }