a10889b10b
Three post-smoke refinements to the Matrix email-proposal review:
1. Dash separators (bot): every card/reply is framed with a dash rule top and
bottom so threads stop bleeding together vertically on mobile.
2. Remove decided threads (bot): on a conclusive approve/dismiss from either
surface, the bot redacts the card (client.room_redact) so the room clears
down to only undecided items. Redacting the bot's own card needs no power;
the web->Matrix path now redacts instead of posting a closure note.
3. Clearer note wording (server v91 + bot): the proposed grid note now names who
emailed whom -- "{teammate} emailed {investor}" (outbound) / "{sender} emailed
the team" (inbound) -- instead of an ambiguous "Sent"/"Received". Outbound
detection also matches our corporate domain (public providers excluded), so a
teammate's mail from a non-enrolled @ten31.xyz address no longer reads as
"Received". Going-forward only; no schema change. The card drops its bare
direction label since the note now carries the relationship.
Tests updated; 30/30 green, render-smoke green.
22 lines
1.2 KiB
TypeScript
22 lines
1.2 KiB
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
// Clarify email-proposal note wording (part of a review-UX refinement; the matching Matrix-side
|
|
// tweaks — dash separators + redacting decided cards — ship on the Spark, not here). The proposed
|
|
// grid note now NAMES who emailed whom — "{teammate} emailed {investor}" (outbound) /
|
|
// "{sender} emailed the team" (inbound) — instead of a bare "Sent"/"Received" that left
|
|
// "who received?" ambiguous. Also fixes a misclassification where a sender on our corporate
|
|
// domain whose mailbox isn't enrolled read as "Received": outbound now also matches our domain
|
|
// (public providers like gmail excluded, so an LP's gmail never reads as ours). Going-forward
|
|
// only (existing proposals keep their text); no schema change.
|
|
export const v_0_1_0_91 = VersionInfo.of({
|
|
version: '0.1.0:91',
|
|
releaseNotes: {
|
|
en_US: [
|
|
'Proposed grid notes now name who emailed whom (e.g. "Jane emailed Acme Capital")',
|
|
'instead of an ambiguous "Sent"/"Received", and correctly classify mail from your',
|
|
'own domain as outbound even when that mailbox isn\'t enrolled.',
|
|
].join(' '),
|
|
},
|
|
migrations: { up: async () => {}, down: async () => {} },
|
|
})
|