diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..73b1a0f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,39 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [2025-02-23.0] - 2025-02-23 + +### 🚀 Features + +- *(ui)* Remove links to half-baked features + +## [2025-02-21.0] - 2025-02-21 + +### 🚀 Features + +- *(ui)* Reorganize e-mail lists and data training +- *(ui)* Clean up and visually improve /emails +- *(ui)* Unify input styles on different pages +- *(ui)* Email details page is styled in the new fashion +- [**breaking**] Remove check for training binaries before starting imap client +- Enrich e-mails parsed from an mbox +- Rename the page "watchers" to "connections" +- Create directories on imap servers upon category creation +- Set log level from ui +- *(ui)* Async operations and errors are shown to the user as toast messages + +### 🐛 Bug Fixes + +- Message ids are now url encoded in the email list +- Exception when moving emails if they could not be categorized +- Save language metadata in detail view and preferences +- Display category as n/a in email views if note set +- N/a no longer listed as a language in admin +- Event loops restart when they fail +- Change wrong order of functions on main +- Compare categorization threshold with the probability correctly +- Restart all event loops after a failure or restart in messaging +- Add new languages to language preferences with the value false +- Confidence is set properly after categorization + diff --git a/shell.nix b/shell.nix index a8b6456..aab2e33 100644 --- a/shell.nix +++ b/shell.nix @@ -7,5 +7,6 @@ pkgs.mkShell { pkgs.clojure-lsp pkgs.clj-kondo pkgs.cljfmt - pkgs.jdk23]; + pkgs.jdk23 + pkgs.git-cliff]; }