You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Double window on Windows — added single-instance lock so launching the app while it's already running focuses the existing window instead of opening a second one
Data deletion on restart — fixed electronStorage.removeItem writing an empty string that caused JSON.parse to fail silently, falling back to empty default state which then overwrote saved tasks and history
Hydration race condition — useMidnightReset now waits for the store to finish reading from disk before running, preventing default state from being written over real data during startup
Settings: Prevent the settings panel from overwriting live Monday.com / Calendar integration state on save. A stale on-mount snapshot could clobber integration data updated after the panel was opened.
Windows data persistence — Fixed a bug where tasks and settings were deleted on reboot on Windows. Data is now stored in the app's persistent userData directory via a file-based IPC bridge instead of the renderer-process localStorage, which could be wiped by Chromium on restart. Users on Windows are strongly encouraged to update.
Calendar URL validation — Calendar subscription URLs are now validated to ensure they use HTTP or HTTPS before any network request is made. Non-HTTP(S) schemes (e.g. file://, ftp://) are rejected. Users on v0.3.0 are encouraged to update.
Calendar Subscription — Add iCal/CalDAV subscription URLs in the Integrations panel. On sync, today's events are fetched from your calendars and automatically added as tasks for the day, keeping Chronos in step with your schedule.
Auto-archive date collision — Work-hours and midnight auto-archive were sharing a single lastAutoArchiveDate field, causing one to block the other from triggering correctly. Each archive type now tracks its own last-run date independently via a new lastWorkArchiveDate setting.