Skip to content

Commit

Permalink
Add Changelog Information
Browse files Browse the repository at this point in the history
  • Loading branch information
oldwomanjosiah committed Sep 19, 2022
1 parent 6df39fc commit a011867
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a011867

Please sign in to comment.