Benjamin Höglinger-Stelzer

Results 65 issues of Benjamin Höglinger-Stelzer

Apparently there's a battery byte in the xinputhid report we can populate so other established apps can be used to read it in XI mode, see https://github.com/nefarius/DsHidMini/blob/98a1ecd3ec89cf5c01348f6d451f81502adf5cab/include/DsHidMini/Ds3Types.h#L216 Potential test app...

enhancement
Core

Going to CsWin32 `0.3.232` (or beyond) introduced a few changed method signatures that need to be addressed, so do this in a separate branch, not via dependabot.

enhancement

The properties `StartedOn` and `UpdatedOn` are currently converted into the wrong format. From CouchDB docs: > started_on (number) – Task start time as unix timestamp > updated_on (number) – Unix...

Added `AddCouchContext` overloads that supply the service provider to the caller. This allows for code like: ```csharp builder.Services.Configure(builder.Configuration.GetSection(nameof(DatabaseSettings))); builder.Services.AddCouchContext(sp => { DatabaseSettings settings = sp.GetRequiredService().Value; CouchOptionsBuilder b = new(); b.UseEndpoint(settings.ServerUrl);...