File Format

Created: 2021-09-12

Finished another essential feature: Daily now uses a single file to store all project level configuration and pages. I've chosen SQLite as an application file format. It's an open format, works on every platform and offers a nice API with SQL. There's the "user_version" PRAGMA, which makes evolving the format trivial. Just check the current version, then run all migrations having a higher version. The next priorities are: - ✅Open the most recent project file by default - ✅Render links as actual anchors - ✅Image support in pages I'm hoping to release the first version, once these are done.