- May 29, 2022
-
-
Peter Hutterer authored
Due to some branch mixup, the 0.10 tag points at a commit not actually on the master branch in the gitlab setup. Let's fix this by just bumping the version again so we agree on where we're at.
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
-
Peter Hutterer authored
Without a DCO the SOB is mostly pointless anyway and unlike other projects there's nothing in this repo anywhere that points at someone else's DCO either. Let's just drop this requirement, we'll get on fine without it.
-
- Dec 16, 2021
-
-
Peter Hutterer authored
This removes the need of suffixing `.value` when we need the numeric value of an evcode, which is virtually all the time. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Aug 23, 2021
-
-
Peter Hutterer authored
Fixes #11 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
We don't use static pages so let's get rid of the associated warning Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
And start using a container for the flake and install jobs - we're hitting docker pull limits too frequently. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Sep 23, 2020
-
-
Peter Hutterer authored
Testing tablets without acces to the hw is reasonably common, let's provide a simple example that can be extended to the user's liking. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Jun 16, 2020
-
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Jun 04, 2020
-
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Apr 04, 2020
-
-
Peter Hutterer authored
Because I spent way too long trying to assign device.id['vendor'] before I remembered that it doesn't work that way. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Mar 11, 2020
-
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
These break when running offa custom VM that may not have any local devices at all. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Mar 10, 2020
-
-
Filipe Laíns authored
Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Use the same format for the names. Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Fixes #1 Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
- Aug 26, 2019
-
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
This makes flake8 a lot happier Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
-
- Aug 12, 2019
-
-
Peter Hutterer authored
Previously, event codes without a kernel define would resolve into properly named objects, e.g. libevdev.EV_REL.REL_0B This breaks the API whenever the kernel introduces a new define because that named object will just disappear. e.g. the above REL_0B is now REL_WHEEL_HI_RES. Since the undefined names aren't supposed to be used by callers directly anyway, rename them to be underscored instead: libevdev.EV_REL._REL_0B This means we can still return them from evbit() and events() but the underscore signals a private API. The actual name remains the same, so print(_REL_0B.name) will not have an underscore. This is to avoid bugs/breakage where the caller uses the 3-lettter prefix for other purposes. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Aug 06, 2019
-
-
Peter Hutterer authored
A large percentage of real-world use-cases are tied into some external mainloop and require non-blocking operation. It's too easy to forget about that, so let's add the O_NONBLOCK call to the example documentation here. Those that don't need it can remove it easily anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Filipe Laíns authored
Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
- Aug 05, 2019
-
-
Filipe Laíns authored
Signed-off-by: Filipe Laíns <lains@archlinux.org>
-
- May 24, 2019
-
-
Peter Hutterer authored
test/test_device.py:434: DeprecationWarning: Please use assertEqual instead. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Fixes #5 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Mar 27, 2019
-
-
Peter Hutterer authored
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Mar 17, 2019
-
-
Peter Hutterer authored
Fix #4 intercept error returns from libevdev_next_event() Closes #4 See merge request libevdev/python-libevdev!6
-
- Mar 15, 2019
-
-
Stefano Miccoli authored
explicitly check for error codes returned by libevdev_next_event in order to avoid returning bogus events in next_event generator.
-
Peter Hutterer authored
Not needed, it's obvious anyway and we have the property documentation. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-
- Jan 29, 2019
-
-
Peter Hutterer authored
Add missing import to example. See merge request libevdev/python-libevdev!5
-