BillTracker/client/lib/version.js

15 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

2026-05-14 03:01:47 -05:00
export const APP_VERSION = '0.27.01';
2026-05-03 19:51:57 -05:00
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
2026-05-14 03:01:47 -05:00
version: '0.27.01',
2026-05-14 02:11:54 -05:00
date: '2026-05-14',
2026-05-03 19:51:57 -05:00
highlights: [
2026-05-14 02:11:54 -05:00
{ icon: '❄️', title: 'Debt Snowball', desc: 'New Snowball page: drag-and-drop debt ordering, Dave Ramsey payoff projections, avalanche method comparison, and balance update by clicking any balance figure.' },
{ icon: '💳', title: 'Debt Details on Bills', desc: 'Add current balance, minimum payment, and APR directly to any bill. Bills in Credit Cards, Loans, and Mortgage categories are auto-detected.' },
{ icon: '📉', title: 'Payment → Balance Sync', desc: 'Recording a payment on a debt bill automatically reduces its current balance (principal = payment minus one month of interest). Un-marking a payment reverses the change.' },
{ icon: '📊', title: 'Dual-Column XLSX Import', desc: 'Bills due on the 1st and 15th are now both imported from dual-layout spreadsheets' },
{ icon: '🛡️', title: 'Import CSRF Fix', desc: 'XLSX, SQLite, and backup imports now include CSRF token (previously blocked with "session expired" error)' },
2026-05-03 19:51:57 -05:00
],
2026-05-14 02:11:54 -05:00
};