v0.24.5: starting amounts fix, pay badge alignment, demo data persistence

This commit is contained in:
null 2026-05-11 15:25:04 -05:00
parent b29d3a0b02
commit 22f9a570aa
2 changed files with 6 additions and 5 deletions

View File

@ -1,11 +1,12 @@
export const APP_VERSION = '0.24.4'; export const APP_VERSION = '0.24.5';
export const APP_NAME = 'BillTracker'; export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = { export const RELEASE_NOTES = {
version: '0.24.4', version: '0.24.5',
date: '2026-05-11', date: '2026-05-11',
highlights: [ highlights: [
{ icon: '📱', title: 'Analytics Mobile Layout', desc: 'Charts, heatmap, and controls now display properly on mobile screens.' }, { icon: '🔧', title: 'Starting Amounts Fix', desc: 'Paid deductions now correctly factor in the "other" bucket for remaining balance calculations.' },
{ icon: '🔧', title: 'Previous Month Payment Toggle', desc: 'Clicking payment badges on previous months now creates/removes payments for the correct month.' }, { 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.' },
], ],
}; };

View File

@ -1,6 +1,6 @@
{ {
"name": "bill-tracker", "name": "bill-tracker",
"version": "0.24.4", "version": "0.24.5",
"description": "Monthly bill tracking system", "description": "Monthly bill tracking system",
"main": "server.js", "main": "server.js",
"scripts": { "scripts": {