13 lines
543 B
JavaScript
13 lines
543 B
JavaScript
export const APP_VERSION = '0.19.2';
|
|
export const APP_NAME = 'BillTracker';
|
|
|
|
export const RELEASE_NOTES = {
|
|
version: '0.19.2',
|
|
date: '2026-05-09',
|
|
highlights: [
|
|
{ icon: '🛡️', title: 'Legacy database migration fix', desc: 'Users upgrading from older versions can now log in.' },
|
|
{ icon: '🔒', title: 'Security hardening', desc: 'Path traversal protection, content redaction, error sanitization.' },
|
|
{ icon: '🪟', title: 'React Error Boundaries', desc: 'App no longer crashes to white screen on errors.' },
|
|
],
|
|
};
|