15 lines
804 B
JavaScript
15 lines
804 B
JavaScript
export const APP_VERSION = '0.16.2';
|
|
export const APP_NAME = 'BillTracker';
|
|
|
|
export const RELEASE_NOTES = {
|
|
version: '0.16.2',
|
|
date: '2026-05-03',
|
|
highlights: [
|
|
{ icon: '🗄️', title: 'SQLite data import', desc: 'Preview and import user-owned SQLite exports created by this app.' },
|
|
{ icon: '🧾', title: 'Import tools layout', desc: 'Spreadsheet and SQLite import tools now sit side by side in Profile.' },
|
|
{ icon: '📦', title: 'Exports below imports', desc: 'User data export downloads now live below the import tools.' },
|
|
{ icon: '🎨', title: 'Material Design theme', desc: 'Light mode defaults to the shadcn Material Design theme tokens.' },
|
|
{ icon: '📅', title: 'Due day editing', desc: 'Bill due dates are edited as recurring day-of-month values.' },
|
|
],
|
|
};
|