From bc41badff18d6075e97bb41f02c39a9946f96d22 Mon Sep 17 00:00:00 2001 From: Joey Riches Date: Fri, 24 Oct 2025 16:32:59 +0100 Subject: [PATCH 1/3] appstream: Fixed malformed file by adding closing tag --- share/solaar/io.github.pwr_solaar.solaar.metainfo.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/solaar/io.github.pwr_solaar.solaar.metainfo.xml b/share/solaar/io.github.pwr_solaar.solaar.metainfo.xml index aafee362..a3277e07 100644 --- a/share/solaar/io.github.pwr_solaar.solaar.metainfo.xml +++ b/share/solaar/io.github.pwr_solaar.solaar.metainfo.xml @@ -48,7 +48,7 @@ - + From 02e05e46b032b5578645b2eb95ce2ddfee3dd0f7 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sat, 25 Oct 2025 10:20:42 -0400 Subject: [PATCH 2/3] doc: update bug report template --- .github/ISSUE_TEMPLATE/bug_report.md | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 32385469..5f9b7a8d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -8,12 +8,20 @@ assignees: '' --- **Information** - - - + + + + + + - Solaar version (`solaar --version` or `git describe --tags` if cloned from this repository): - Distribution: -- Kernel version (ex. `uname -srmo`): `KERNEL VERSION HERE` +- Kernel version (ex. `uname -srmo`): - Output of `solaar show`:
@@ -34,11 +42,11 @@ CONTENTS HERE - Errors or warrnings from Solaar: - +run Solaar as `solaar -ddd`, after killing any running Solaar processes to +have Solaar log debug, informational, warning, and error messages to stdout. --> **Describe the bug** From 44a647499c8ac85fcc6ee2df710ed8a1c40d436a Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sat, 25 Oct 2025 10:04:15 -0400 Subject: [PATCH 3/3] ui: don't pop up window in response to ADC changes --- lib/logitech_receiver/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logitech_receiver/notifications.py b/lib/logitech_receiver/notifications.py index 5ce5b4c1..976d50d5 100644 --- a/lib/logitech_receiver/notifications.py +++ b/lib/logitech_receiver/notifications.py @@ -280,7 +280,7 @@ def _process_feature_notification(device: Device, notification: HIDPPNotificatio result = hidpp20.decipher_adc_measurement(notification.data) if result: # if good data and the device was not present then a push is needed device.set_battery_info(result[1]) - device.changed(active=True, alert=Alert.ALL, reason=_("ADC measurement notification"), push=not old_present) + device.changed(active=True, alert=Alert.NONE, reason=_("ADC measurement notification"), push=not old_present) else: # this feature is also used to signal device becoming inactive device.present = False # exception to device presence device.changed(active=False)