Skip to content

Commit

Permalink
Updated CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
houmain committed Apr 17, 2024
1 parent 919e62d commit 9d4bac4
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Version 4.1.0] - 2024-04-17

### Added

- Added keymapper tray icon for Linux (#126).

### Fixed

- Further improved selection of key releasing a triggered output (#122).
- Fixed logical keys in context modifiers (#128).
- Fixed ContextActive with fallthrough contexts.

## [Version 4.0.2] - 2024-04-11

### Fixed

- Improved selection of key releasing a triggered output (#122).
- Improved forwarding of input when a potential match fails.

## [Version 4.0.1] - 2024-04-09

### Fixed
Expand Down Expand Up @@ -427,6 +446,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Version 1.1.5] - 2020-05-09

[version 4.1.0]: https://github.com/houmain/keymapper/compare/4.0.2...4.1.0
[version 4.0.2]: https://github.com/houmain/keymapper/compare/4.0.1...4.0.2
[version 4.0.1]: https://github.com/houmain/keymapper/compare/4.0.0...4.0.1
[version 4.0.0]: https://github.com/houmain/keymapper/compare/3.5.2...4.0.0
[version 3.5.2]: https://github.com/houmain/keymapper/compare/3.5.1...3.5.2
Expand Down
2 changes: 2 additions & 0 deletions src/client/unix/TrayIcon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ TrayIcon& TrayIcon::operator=(TrayIcon&& rhs) noexcept = default;
TrayIcon::~TrayIcon() = default;

void TrayIcon::initialize(Handler* handler, bool show_reload) {
#if defined(ENABLE_APPINDICATOR)
if (auto impl = make_tray_icon_gtk())
if (impl->initialize(handler, show_reload)) {
m_impl = std::move(impl);
verbose("Initialized GTK tray icon");
}
#endif
}

void TrayIcon::update() {
Expand Down

0 comments on commit 9d4bac4

Please sign in to comment.