Tero Paloheimo
Tero Paloheimo
Add support for providing more than one authenticator during login. Also fix remaining reflection problems reported by eastwood and fix code format problems reported by cljfmt.
With GCC 9.2 the following warning is emitted when building hstr: In file included from /usr/include/string.h:494, from include/hstr_utils.h:26, from hstr_utils.c:19: In function ‘strncpy’, inlined from ‘get_shell_name_by_ppid’ at hstr_utils.c:220:15: /usr/include/bits/string_fortified.h:106:10: warning:...
See the commit message description on the rationale of this change. There is unfortunately not a unit test as I was not able to figure out how to add one...
This enables the use of non-default Bluetooth device use with the Bleak communication back-end. Fixes issue https://github.com/ttu/ruuvitag-sensor/issues/237.
As Bleak is soon to become the default adapter on Linux, install Bleak by default for the benefit of Linux users, both current and future. For future Bleak users this...
[Ruff](https://docs.astral.sh/ruff/) is a "multi-purpose" tool for Python linting and code-formatting which can replace the current tools apart from mypy. This would improve the developer experience as there would be only...
When using the Bleak communication module the Bluetooth device argument value is ignored. For example I modified the `examples/get_async_bleak.py` example as shown below to use a non-existent device and it...
Refer to the built-in venv module instead of the third party virtualenv module. Also do some minor text changes. Fixes issue #525.