Jonas Malaco
Jonas Malaco
When starting to download a particular directory with 4.2 (from the Arch repository), the GUI crashes. In the console: ``` device found, opening session... device info "samsung" "SM-G991B" mtpz-data path:...
liquidctl has had support for basic monitoring and fan/pump control of NZXT Kraken Z coolers for a while, but the LCD screen continues to a thorn, and very little progress...
When looking into libusb/hidapi#229, I noticed that the behavior of `hid_get_feature_report` when report IDs are not used [is not as clear as I thought](https://github.com/libusb/hidapi/issues/229#issuecomment-810780640), and perhaps not even well defined....
The Linux kernel has hwmon support for a few devices we also support: - Corsair Commander Pro/Obsidian 1000D ([`corsair-cpro`](https://www.kernel.org/doc/html/latest/hwmon/corsair-cpro.html)) - Corsair HX750i, HX850i, HX1000i, HX1200i, RM650i, RM750i, RM850i, RM1000i ([`corsair-psu`](https://www.kernel.org/doc/html/latest/hwmon/corsair-psu.html))...
Some devices require synchronized access and don't cope with receiving out-of-order packets (#274). Fixing this will require our drivers to implement some form of locking of the devices, probably cooperative....
Most USB/USB HID devices supported by liquidctl reset either on "fan header" or 5V-Standby power down. But the exact behavior varies, and there may also be exceptions (e.g. https://github.com/liquidctl/liquidctl/issues/447#issuecomment-1095521730). Add...
Mixing calls with and without `--legacy-690lc` can cause issues, and having the user keep track of this is prone to errors. One solution would be for the value – `legacy_690lc...
Before `hxFromBytes(foo)` would generate ```js new Buffer(foo.b.bufferValue) ``` but that changed with HaxeFoundation/hxnodejs@19a1e2b9af60860b0f0b9e0d5f2a933ff12c6031 (and HaxeFoundation/hxnodejs@9b24a891e640beca1bb57dea31800acafe696ebb) to ```js new Buffer(foo.b.bytes, foo.b.byteOffset, foo.b.byteLength) ``` However, the history of the `new Buffer(arrayBuffer, offset,...
In the SQLite CFFI library, `connect` returns an abstract Neko value, of `k_db` kind and with a finalizer set. If the `k_result` request value only keeps a pointer to the...