12 lines
649 B
JavaScript
12 lines
649 B
JavaScript
export const APP_VERSION = '0.24.5';
|
|
export const APP_NAME = 'BillTracker';
|
|
|
|
export const RELEASE_NOTES = {
|
|
version: '0.24.5',
|
|
date: '2026-05-11',
|
|
highlights: [
|
|
{ icon: '🔧', title: 'Starting Amounts Fix', desc: 'Paid deductions now correctly factor in the "other" bucket for remaining balance calculations.' },
|
|
{ icon: '🎨', title: 'Pay Badge Alignment', desc: 'Amount input and Pay button now stay inline and centered, no more wrapping on tight layouts.' },
|
|
{ icon: '🌱', title: 'Demo Data Persistence', desc: 'Seed/unseed button state persists across tab switches — always checks actual DB state on mount.' },
|
|
],
|
|
}; |