BillTracker/client/lib/version.js

15 lines
926 B
JavaScript
Raw Normal View History

2026-05-04 23:34:24 -05:00
export const APP_VERSION = '0.18.4';
2026-05-03 19:51:57 -05:00
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
2026-05-04 23:34:24 -05:00
version: '0.18.4',
2026-05-04 13:14:32 -05:00
date: '2026-05-04',
2026-05-03 19:51:57 -05:00
highlights: [
2026-05-04 13:14:32 -05:00
{ icon: '📱', title: 'Mobile and tablet layouts', desc: 'Navigation, page headers, dialogs, and dense tables now adapt better below desktop widths.' },
{ icon: '🧭', title: 'Tablet-safe navigation', desc: 'The top navigation uses the compact menu on tablet sizes to avoid horizontal overflow.' },
{ icon: '📊', title: 'Responsive analytics', desc: 'Analytics controls, charts, and the pay heatmap resize or scroll cleanly on smaller screens.' },
{ icon: '🪟', title: 'Viewport-safe dialogs', desc: 'Dialogs and confirmations fit mobile screens and scroll internally when content is long.' },
{ icon: '🖥️', title: 'Desktop preserved', desc: 'Existing desktop layouts remain on the same large-screen breakpoints.' },
2026-05-03 19:51:57 -05:00
],
};