From fc06db07043f4fb82d029fcb420e1e68d1bbe74e Mon Sep 17 00:00:00 2001 From: elkowar <5300871+elkowar@users.noreply.github.com> Date: Mon, 15 Nov 2021 21:30:34 +0100 Subject: [PATCH] Add CHANGELOG.md --- .github/pull_request_template.md | 1 + CHANGELOG.md | 25 +++++++++++++++++++++++++ README.md | 3 ++- 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index ca9868e..1283f19 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -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. - [ ] 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. - [ ] I used `cargo fmt` to automatically format all code before committing diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f3ac3d5 --- /dev/null +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 5ec1915..9d606c5 100644 --- a/README.md +++ b/README.md @@ -56,4 +56,5 @@ If you want to contribute anything, like adding new widgets, features, or subcom 1. Fork this repository 2. Install dependencies 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