diff --git a/CHANGELOG.md b/CHANGELOG.md index 7160e62..4b2cd69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +### 6.4.0 (4.10.2024) + +### Fixed + +- Updated offline table for auto suggestions from gathered data (GA) +- Touchpad detection by just filtering out touchpads with `9009` that have only duo laptops +- Detection of `dnf` for v5 +- Filtering out repeating value 2 of event `BTN_TOOL_*` +- Log level of failures of commands for another distros (from `error` to `debug`) +- Internal modifier keys (add delay `0.005s` for composed keys only, credits @benj3578) +- Releasing list of keys in reverse order so modifiers wrap up other keys +- Uninstalling power supply mode +- Unification of install path under `INSTALL_DIR_PATH` +- Propagating env variables thought install/uninstall scripts +- Slot ending when doing slide gesture from top icons + +### Feature + +- Removed `which` as unnecessary dependency +- Simplified detection of package managers using `command` +- Added config value that allows to limit backlight levels defined in layout file rotated by top left icon func to 2 levels only (min/max, windows official driver behaviour) (credits @scientiac) +- Init `flake` for NixOS (credits @scientiac) +- Send runtime logs to the journal +- Not allow lowering x or y axis during movement + ### 6.3.4 (19.9.2024) ### Fixed diff --git a/README.md b/README.md index f5f16c8..bd820d6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![Contributor](https://img.shields.io/badge/contributor-kamack33-blue) [![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](https://github.com/asus-linux-drivers/asus-numberpad-driver/graphs/contributors) [![GitHub Release](https://img.shields.io/github/release/asus-linux-drivers/asus-numberpad-driver.svg?style=flat)](https://github.com/asus-linux-drivers/asus-numberpad-driver/releases) -[![GitHub commits](https://img.shields.io/github/commits-since/asus-linux-drivers/asus-numberpad-driver/v6.3.4.svg)](https://GitHub.com/asus-linux-drivers/asus-numberpad-driver/commit/) +[![GitHub commits](https://img.shields.io/github/commits-since/asus-linux-drivers/asus-numberpad-driver/v6.4.0.svg)](https://GitHub.com/asus-linux-drivers/asus-numberpad-driver/commit/) [![GitHub issues-closed](https://img.shields.io/github/issues-closed/asus-linux-drivers/asus-numberpad-driver.svg)](https://GitHub.com/asus-linux-drivers/asus-numberpad-driver/issues?q=is%3Aissue+is%3Aclosed) [![GitHub pull-requests closed](https://img.shields.io/github/issues-pr-closed/asus-linux-drivers/asus-numberpad-driver.svg)](https://github.com/asus-linux-drivers/asus-numberpad-driver/compare) [![Ask Me Anything !](https://img.shields.io/badge/Ask%20about-anything-1abc9c.svg)](https://github.com/asus-linux-drivers/asus-numberpad-driver/issues/new/choose) diff --git a/nix/default.nix b/nix/default.nix index 8ceba21..030457e 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -19,7 +19,7 @@ let in python311Packages.buildPythonPackage { pname = "asus-numberpad-driver"; - version = "6.3.4"; + version = "6.4.0"; src = ../.; format = "other";