summaryrefslogtreecommitdiffstats
path: root/usbhid-dump/NEWS
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:27:07 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:27:07 +0000
commite2e1a00b1595b4930b86e3ba3ea2e9b771a79653 (patch)
treeba77e3ac3992e0dbf8f751513b9015d37122a2b1 /usbhid-dump/NEWS
parentInitial commit. (diff)
downloadusbutils-e2e1a00b1595b4930b86e3ba3ea2e9b771a79653.tar.xz
usbutils-e2e1a00b1595b4930b86e3ba3ea2e9b771a79653.zip
Adding upstream version 1:014.upstream/1%014upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'usbhid-dump/NEWS')
-rw-r--r--usbhid-dump/NEWS38
1 files changed, 38 insertions, 0 deletions
diff --git a/usbhid-dump/NEWS b/usbhid-dump/NEWS
new file mode 100644
index 0000000..4c7e40d
--- /dev/null
+++ b/usbhid-dump/NEWS
@@ -0,0 +1,38 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+# Copyright (c) 2010 Nikolai Kondrashov
+
+2014-11-11: 1.4
+ * Request report descriptor with size specified in the interface descriptor
+ to fix retrieval with some devices (e.g. Waltop Vega Tablet) which
+ would produce ERROR_PIPE otherwise.
+ * Add missing stdint.h includes to fix Gentoo/FreeBSD build issues.
+ * Add README.md
+
+2011-02-05: 1.3
+ * Add manual page.
+ * Fix several build issues.
+ * Fix infinite loop in command-line option parsing on unsigned char
+ platforms.
+
+2010-11-20: 1.2
+ * Command line parameters are removed, now all HID interfaces
+ of all USB devices are dumped by default. This may include the
+ keyboard controlling the terminal, for example, please be careful.
+ * Added device selection limiting options: -s, -a, --address=bus[:dev]
+ to limit by bus number and/or device address and -d, -m,
+ --model=vid[:pid] to limit by vendor and/or product.
+ * Added interface number limiting option -i, --interface=NUMBER.
+ * Added stream interrupt transfer timeout option -t,
+ --stream-timeout=NUMBER, which is set to 1 minute by default to
+ allow recovery of accidentially captured terminal input device.
+ This timeout is printed on the start of stream dumping.
+
+2010-08-24: 1.1
+ * Renamed to usbhid-dump
+ * Fix handling of responses to unsupported HID requests
+ * Renamed dump entity "both" to "all"
+
+2010-07-25: 1.0
+ * Report descriptor dumping support
+ * Report stream dumping support
+ * Report stream dumping feedback and output pausing support