Skip to content

Commit c87c375

Browse files
committed
Bump to v6.9.0
1 parent 8a36fee commit c87c375

3 files changed

Lines changed: 22 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 6.9.0 (15.4.2026)
4+
5+
### Fixed
6+
7+
- Adding adding `uinput` group on BazziteOS
8+
- Changing and reading InputDevice property (`enabled`, `tapToClick`, ..) thought `qdbus` on KDE
9+
- Deprecated `xorg.xinput` to `xinput` for the next stable release of NixOS (credits @jalbstmeijer @MeeSumee)
10+
- Returning lowest key combinations as possible (best with no modifiers) for appropriate character on X11
11+
- Applying the current keymap during first loading on Gnome
12+
- A few error/exception log levels that should be debug
13+
14+
### Feature
15+
16+
- Added possibility during install process replace '.' with ','
17+
- Added support for external keyboard devices connected via bluetooth
18+
- Added possibility to run `LOG=DEBUG bash install.sh` which means the installed driver send to the journal log debugging logs (the installed service contains env var `LOG=DEBUG`)
19+
- Added new layout for GX650 series (top and bottom margin is larger than has GX551 and outside are no physical buttons but which is irelevant for this driver atleast for this moment)
20+
321
## 6.8.7 (4.3.2026)
422

523
### Fixed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
![Maintainer](https://img.shields.io/badge/maintainer-ldrahnik-blue)
55
![Contributor](https://img.shields.io/badge/contributor-kamack33-blue)
66
[![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)
7-
[![GitHub commits](https://img.shields.io/github/commits-since/asus-linux-drivers/asus-numberpad-driver/v6.8.7.svg)](https://GitHub.com/asus-linux-drivers/asus-numberpad-driver/commit/)
7+
[![GitHub commits](https://img.shields.io/github/commits-since/asus-linux-drivers/asus-numberpad-driver/v6.9.0.svg)](https://GitHub.com/asus-linux-drivers/asus-numberpad-driver/commit/)
88
[![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)
99
[![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)
1010
[![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)
@@ -64,7 +64,7 @@ $ git clone https://github.com/asus-linux-drivers/asus-numberpad-driver
6464
$ cd asus-numberpad-driver
6565
# now you are using master branch with the latest changes which may be not stable
6666
# jump to the latest release of stable version:
67-
$ git checkout v6.8.7
67+
$ git checkout v6.9.0
6868
```
6969

7070
or download the latest release (stable version) from [the release page](https://github.com/asus-linux-drivers/asus-numberpad-driver/releases), extract and install for current user and current Python3 ([How to install the driver with specific Python3 version using pyenv?](#faq)):
@@ -174,7 +174,7 @@ This repo contains a Flake that exposes a NixOS Module that manages and offers o
174174
inputs = {
175175
# ---Snip---
176176
asus-numberpad-driver = {
177-
url = "github:asus-linux-drivers/asus-numberpad-driver/v6.8.7"; # use this line for the latest release of stable version
177+
url = "github:asus-linux-drivers/asus-numberpad-driver/v6.9.0"; # use this line for the latest release of stable version
178178
# url = "github:asus-linux-drivers/asus-numberpad-driver"; # or this line for using master branch with the latest changes which may be not stable
179179
inputs.nixpkgs.follows = "nixpkgs";
180180
};

nix/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let
2323
in
2424
python313Packages.buildPythonPackage {
2525
pname = "asus-numberpad-driver";
26-
version = "6.8.7";
26+
version = "6.9.0";
2727
src = ../.;
2828

2929
format = "other";

0 commit comments

Comments
 (0)