import { VersionInfo } from '@start9labs/start-sdk' // Grant's real-phone device-test round 2 — four in-app fixes (CRM half; the Matrix intake // thread-redaction change ships on the Spark, not here): // - Intake fuzzy match no longer over-indexes on generic firm words ("Investment Group", // "Capital", "Family Office"): _name_similarity scores DISTINCTIVE tokens only. // - Mobile grid "Last contact" (staleness) sort is reversible (most-stale / most-recent first). // - Mobile "Edit investor" prefills a contact's email: GET /api/fundraising/state heals a blank // grid pill email from the linked classic contact (fill-only; next save persists it). // - Mobile quick-log pencil icon renders (CSS sizing on the sole flex-child svg — iOS fix). // No schema change — no migration. export const v_0_1_0_99 = VersionInfo.of({ version: '0.1.0:99', releaseNotes: { en_US: [ 'Mobile polish + intake fixes: reversible "Last contact" sort, Edit-investor now shows a', "contact's saved email, the quick-log pencil icon renders, and business-card/intake", 'duplicate-matching ignores generic firm words like "Investment Group" / "Capital".', ].join(' '), }, migrations: { up: async () => {}, down: async () => {} }, })