From a0118673b67cea592109b70594284c4c7853fa8e Mon Sep 17 00:00:00 2001 From: Josiah Hilden Date: Mon, 19 Sep 2022 16:59:40 -0500 Subject: [PATCH] Add Changelog Information --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9a6246b..2a94a2ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,21 @@ All notable changes to eww will be listed here, starting at changes since versio - Add support for output names in X11 to select `:monitor`. - Add support for `:active`-pseudoselector on eventbox (By: viandoxdev) - Add support for `:password` on input (By: viandoxdev) +- Add let-in syntax to simplexpr + ```ocaml + (def-widget dataView [login] + (label + :text { + let + user = global_data.users[login] + email = user.email + first = user.name[0] + last = user.name[2] + in + "${first} ${last} <${email}>" + end + })) + ``` ### Notable fixes and other changes - Scale now only runs the onchange command on changes caused by user-interaction