11 lines
593 B
JavaScript
11 lines
593 B
JavaScript
export const APP_VERSION = '0.23.2';
|
|
export const APP_NAME = 'BillTracker';
|
|
|
|
export const RELEASE_NOTES = {
|
|
version: '0.23.2',
|
|
date: '2026-05-10',
|
|
highlights: [
|
|
{ icon: '🔒', title: 'Critical: Notification Privacy Leak Fix', desc: 'In per-user notification mode, bills were sent to all opted-in recipients regardless of ownership. Now each recipient only receives their own bills.' },
|
|
{ icon: '🛡️', title: 'Orphaned Bill Guard', desc: 'Defensive check added: bills with no user_id are now skipped with a warning instead of being broadcast to all recipients.' },
|
|
],
|
|
}; |