0ae59f3550
Introduces RECAP_MODE=multi alongside single-mode self-host: - Tenant auth + accounts (magic-link via System SMTP), per-tenant credit pool, anonymous trial minting with per-IP/-64 caps - Self-serve Pro/Max purchase: inline Lightning (BTCPay) + card (Zaprite), prepaid 30-day periods, expiry-reminder emails - Core-decoupling: relay owns cloud tier/expiry keyed by Recaps user-id - SQLite (better-sqlite3) schema for multi-mode; filesystem unchanged for single - StartOS actions/versions through 0.2.155
14 lines
1.8 KiB
TypeScript
14 lines
1.8 KiB
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const v_0_2_132 = VersionInfo.of({
|
|
version: '0.2.132:0',
|
|
releaseNotes: {
|
|
en_US:
|
|
"Export — three changes. (1) PDF export now includes speaker chips. Each transcript line is prefixed with a small colored rounded-rectangle chip showing the speaker's initials (or cluster letter when no name was inferred), matching the on-screen palette so the same person is the same color in the dashboard, on screen, and in the printed PDF. The PDF also gets a 'SPEAKERS' legend row above the topics list with each speaker's chip + full name + total speaking time, so a reader looking at the PDF cold has a key. Skips entirely when the session had no diarization (older saves, diarization disabled, etc.) so non-diarized PDFs render exactly as before. (2) New Markdown export. Renders a human-readable .md doc with the title, topic count, source link (YouTube), a Speakers section, and per-topic ## headings (with timestamps and YouTube deeplinks) followed by speaker-attributed transcript lines inside an expandable <details> block — the same format the relay's internal-meetings markdown export uses, so a meeting recap and a Recaps export read the same in a markdown viewer. (3) New JSON export. Downloads the raw saved session record verbatim — chunks + entries + speakers + speakerNames + logs — useful for piping into other tools, archiving outside the app, or feeding into an LLM as context. (4) The single 'Export PDF' button on the main view and the per-row icon in the history sidebar now open an 'Export ▾' menu with all three options (PDF / Markdown / JSON). Same component on desktop and mobile — taps to the same 36px-min-height rows that fit a thumb. Closes on outside click or Escape.",
|
|
},
|
|
migrations: {
|
|
up: async ({ effects }) => {},
|
|
down: async ({ effects }) => {},
|
|
},
|
|
})
|