Add CHANGELOG.md

This commit is contained in:
elkowar 2021-11-15 21:30:34 +01:00
parent b026be426e
commit fc06db0704
No known key found for this signature in database
GPG key ID: E321AD71B1D1F27F
3 changed files with 28 additions and 1 deletions

View file

@ -25,5 +25,6 @@ Anything else you want to add, such as remaining questions or explanations.
Please make sure you can check all the boxes that apply to this PR. Please make sure you can check all the boxes that apply to this PR.
- [ ] All widgets I've added are correctly documented. - [ ] All widgets I've added are correctly documented.
- [ ] I added my changes to CHANGELOG.md, if appropriate.
- [ ] The documentation in the `docs/content/main` directory has been adjusted to reflect my changes. - [ ] The documentation in the `docs/content/main` directory has been adjusted to reflect my changes.
- [ ] I used `cargo fmt` to automatically format all code before committing - [ ] I used `cargo fmt` to automatically format all code before committing

25
CHANGELOG.md Normal file
View file

@ -0,0 +1,25 @@
# Changelog
All notable changes to eww will be listed here, starting at changes since version 0.1.2.
## [Unreleased]
### Features
- Add `eww inspector` command
- Add `--no-daemonize` flag
- Add support for displaying marks on `scale`-widget (By: druskus20)
- Add `children`-widget that allows custom widgets to make use of children
- Add support for `:hover` css selectors for eventbox (By: druskus20)
- Add `eww get` subcommand (By: druskus20)
- Add circular progress widget (By: druskus20)
### Notable Internal changes
- Rework state management completely, now making local state and dynamic widget hierarchy changes possible.
### Notable fixes and other changes
- Fix `onscroll` gtk-bug where the first event is emitted incorrectly (By: druskus20)
- Allow windows to get moved when windowtype is `normal`
- Added more examples
- List system-level dependencies in documentation
- Document structure of magic variables (By: legendofmiracles)

View file

@ -56,4 +56,5 @@ If you want to contribute anything, like adding new widgets, features, or subcom
1. Fork this repository 1. Fork this repository
2. Install dependencies 2. Install dependencies
3. Smash your head against the keyboard from frustration (coding is hard) 3. Smash your head against the keyboard from frustration (coding is hard)
4. Open a pull request once you're finished 4. Write down your changes in CHANGELOG.md
5. Open a pull request once you're finished