import { VersionInfo } from '@start9labs/start-sdk' // Mobile top-bar polish + native zoom behaviour (CSS-only; no JS/schema change). // - Viewport meta gains maximum-scale=1 + user-scalable=no: disables pinch-zoom and, more // importantly, the iOS auto-zoom-on-focus that jerked the page in whenever a sub-16px input // was tapped (app-wide — our fields are 13–15px). OS-level accessibility zoom still works. // - Top-bar account initial is now flex-centered and dc-aligned (IBM Plex Mono, accent-light, // 13px); it was defaulting to inline/baseline and rendered off-center. // - Quick-log pencil colour bumped --text-muted -> --text-secondary so the action button reads // clearly on-device (the dc t3 thin-outline grey read as empty next to the colour sun emoji). export const v_0_1_0_97 = VersionInfo.of({ version: '0.1.0:97', releaseNotes: { en_US: [ 'Mobile polish: the app no longer zooms in when you tap a field or pinch (it now behaves', 'like a native app), and the top-bar account initial and quick-log pencil icon render', 'correctly. Desktop is unchanged.', ].join(' '), }, migrations: { up: async () => {}, down: async () => {} }, })