Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
houmain committed Jan 23, 2022
1 parent 2f8408f commit b6b1c1e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [Version 1.8.1] - 2022-01-23

### Changed
- No longer grabbing combined keyboard/mouse devices.
- CMake defaults to build type "Release".

## [Version 1.8.0] - 2021-12-20

### Added
- Multiple contexts can be active at once.
- [default] can be used to return to the default context.
Expand Down Expand Up @@ -78,7 +86,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

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

[Unreleased]: https://github.com/houmain/keymapper/compare/1.7.0...HEAD
[Unreleased]: https://github.com/houmain/keymapper/compare/1.8.1...HEAD
[Version 1.8.1]: https://github.com/houmain/keymapper/compare/1.8.0...1.8.1
[Version 1.8.0]: https://github.com/houmain/keymapper/compare/1.7.0...1.8.0
[Version 1.7.0]: https://github.com/houmain/keymapper/compare/1.6.0...1.7.0
[Version 1.6.0]: https://github.com/houmain/keymapper/compare/1.5.0...1.6.0
[Version 1.5.0]: https://github.com/houmain/keymapper/compare/1.4.0...1.5.0
Expand Down
2 changes: 1 addition & 1 deletion src/linux/client/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void print_help_message(const char* argv0) {
#endif

std::printf(
"keymapper %s(c) 2019-2021 by Albert Kalchmair\n"
"keymapper %s(c) 2019-2022 by Albert Kalchmair\n"
"\n"
"Usage: %s [-options]\n"
" -c, --config <path> configuration file.\n"
Expand Down
2 changes: 1 addition & 1 deletion src/linux/server/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void print_help_message(const char* argv0) {
#endif

std::printf(
"keymapperd %s(c) 2019-2021 by Albert Kalchmair\n"
"keymapperd %s(c) 2019-2022 by Albert Kalchmair\n"
"\n"
"Usage: %s [-options]\n"
" -v, --verbose enable verbose output.\n"
Expand Down
2 changes: 1 addition & 1 deletion src/win32/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void print_help_message(const wchar_t* argv0) {
"");
#endif

error(("keymapper " + version + "(c) 2019-2021 by Albert Kalchmair\n"
error(("keymapper " + version + "(c) 2019-2022 by Albert Kalchmair\n"
"\n"
"Usage: keymapper [-options]\n"
" -c, --config <path> configuration file.\n"
Expand Down
2 changes: 1 addition & 1 deletion src/win32/resource.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define VER_PRODUCTNAME_STR "keymapper"
#define VER_FILEDESCRIPTION_STR "Keymapper"
#define VER_COMPANYNAME_STR "https://github.com/houmain/keymapper"
#define VER_LEGALCOPYRIGHT_STR "(c) 2019-2021 by Albert Kalchmair"
#define VER_LEGALCOPYRIGHT_STR "(c) 2019-2022 by Albert Kalchmair"

#define VER_FILEVERSION ${GIT_COMMIT_FILEVERSION},0
#define VER_FILEVERSION_STR "${GIT_COMMIT_LAST_TAG}\0"
Expand Down

0 comments on commit b6b1c1e

Please sign in to comment.