mnhauke
mnhauke
@Xottab-DUTY done... https://build.opensuse.org/request/show/820433
@Xottab-DUTY should be fixed now
All architectures seem to be affected ... https://build.opensuse.org/package/show/filesystems/growlight
Thanks for fix. It's working fine here: https://build.opensuse.org/package/show/home:mnhauke/growlight
There are still some pending pull requests with fixes for the python3 port.... https://github.com/atlas0fd00m/rfcat/pull/79 https://github.com/atlas0fd00m/rfcat/pull/80 With the changes from the mentioned pull requests _rfcat_bootloader_ should work fine.
The newer units report different values for iSerial and bcdDevice ... * working unit (manufactured 11/18): [lsusb-working.txt](https://github.com/gtudan/co2monitor/files/10513582/lsusb-working.txt) * non-working unit (manufactured 11/21): [lsusb-non-working.txt](https://github.com/gtudan/co2monitor/files/10513584/lsusb-non-working.txt) There's no change in the data format...
websocat is currently only available in the "network:utilities" add-on repository and not (yet) in of openSUSE's official distributions like Tumbleweed, Leap, ... It's a package update but passing "cargo audit"...
> > i-accept-the-risk > > RUSTSEC-2021-0078 > > RUSTSEC-2021-0079 > > RUSTSEC-2021-0124 > > Shall I review those specific RUSTSECs how (and if) they affect Websocat1? That would be nice....
Thanks. Undefining USE_PARALLEL_PROCESSING helped ... ``` diff --git a/crogine/src/ecs/systems/ModelRenderer.cpp b/crogine/src/ecs/systems/ModelRenderer.cpp index efd79335c..370f53002 100644 --- a/crogine/src/ecs/systems/ModelRenderer.cpp +++ b/crogine/src/ecs/systems/ModelRenderer.cpp @@ -53,7 +53,7 @@ source distribution. #include #include -//#define PARALLEL_DISABLE +#define PARALLEL_DISABLE #ifdef...
> Interesting - AIUI gcc < 15 doesn't support parallel execution policies, I was under the impression it should be OK with 15 (in which case [this line](https://github.com/fallahn/crogine/blob/master/crogine/src/ecs/systems/ModelRenderer.cpp#L223) may need...