BillTracker/client/lib/version.js

12 lines
649 B
JavaScript
Raw Normal View History

export const APP_VERSION = '0.24.5';
2026-05-03 19:51:57 -05:00
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
version: '0.24.5',
date: '2026-05-11',
2026-05-03 19:51:57 -05:00
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.' },
2026-05-03 19:51:57 -05:00
],
};