BillTracker/client/lib/version.js

12 lines
690 B
JavaScript
Raw Permalink Normal View History

2026-05-11 16:04:21 -05:00
export const APP_VERSION = '0.24.6';
2026-05-03 19:51:57 -05:00
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
2026-05-11 16:04:21 -05:00
version: '0.24.6',
date: '2026-05-11',
2026-05-03 19:51:57 -05:00
highlights: [
2026-05-11 16:04:21 -05:00
{ icon: '🛡️', title: 'Duplicate Payment Fix', desc: 'Partial payments below the estimated amount are now correctly treated as paid — no more phantom Pay button after recording a payment.' },
{ 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.' },
2026-05-03 19:51:57 -05:00
],
};