# Changelog
All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.1.1] - 2026-06-24
Initial release: a fullscreen, distraction-free, write-only Markdown editor that fades text away to
silence the writer's inner editor.
### Added
- Fullscreen, borderless, keyboard-only writing surface built on `egui`/`eframe`, with a black
canvas and a single bottom-anchored column of text.
- The fading focus view: each glyph stays fully opaque for ~30 seconds, then fades out over ~1
second and is pruned permanently. Older lines scroll off the top as you write.
- Append-only Markdown persistence to a per-day session file at
`~/Documents/write/YYYY-MM-DD.md` (falling back to the home directory), flushed and `fsync`'d
every ~30 seconds and on clean exit.
- Single-writer guarantee per day via an advisory file lock; a second instance for the same day
exits quietly.
- Writing controls: `Enter` for a paragraph break and, when pressed twice, a visual screen clear;
`Backspace` appends a space and clears the screen (never deletes); typed text is captured
verbatim, including accents and dead keys.
- Key-driven `Esc` menu showing a live word count, with `Q` to quit and `Esc` to resume.
- Deferred macOS fullscreen that waits until the window gains focus, avoiding a launch-time
activation race.