|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to Cerebra will be documented here. |
| 4 | + |
| 5 | +## [Unreleased] |
| 6 | + |
| 7 | +## [0.5.0] - 2026-04-09 |
| 8 | +### Added |
| 9 | +- FTS5 full-text search across notes |
| 10 | +- Lucide icons replacing all emoji usage throughout the UI |
| 11 | +- Scrollable sidebar and back button navigation |
| 12 | +- ESLint and Prettier with lint/format scripts |
| 13 | +- Date formatting utility (`dateFormat.ts`) |
| 14 | + |
| 15 | +### Changed |
| 16 | +- Rewrote IPC layer with structured error handling across all handlers |
| 17 | +- Replaced `any` types in all IPC handlers with proper input types |
| 18 | +- Converted `require()` calls in `electron/main.ts` to `await import()` |
| 19 | +- Optimized all database queries across notes, folders, sticky notes, and settings repositories |
| 20 | +- Eliminated redundant DB queries; frontend now filters in-memory where appropriate |
| 21 | +- Consolidated frontend services into hooks, removing standalone service files |
| 22 | +- Refactored `app.tsx` and all modal/card components for cleaner structure |
| 23 | +- Upgraded `moduleResolution` to `node16` in electron and backend tsconfigs |
| 24 | +- Cleaned up comments across all source files |
| 25 | + |
| 26 | +### Fixed |
| 27 | +- Packaged app not displaying UI — replaced `NODE_ENV` check with `app.isPackaged` |
| 28 | +- Frontend path resolution in packaged build pointing to wrong directory |
| 29 | +- `useFolders.remove` refetching entire folder list on delete |
| 30 | +- FTS5 parse errors returning a crash instead of empty results |
| 31 | +- Unused catch bindings across hooks and backend repositories |
| 32 | + |
| 33 | +## [0.1.0] - 2026-03-22 |
| 34 | +### Added |
| 35 | +- Initial database setup with SQLite |
| 36 | +- Notes and folders CRUD operations |
| 37 | +- Sticky notes CRUD operations |
| 38 | +- Settings management |
| 39 | +- Dark mode |
| 40 | +- Persistent tabs |
| 41 | +- Input validation and error handling across all database repositories |
| 42 | +- WAL mode for better database performance |
| 43 | +- Graceful database shutdown |
0 commit comments