Felix

Results 52 comments of Felix

> 考虑了一下,docker的价值应该是可以想办法解决libc和libstdc++的版本兼容问题,确保可以在不同系统的桌面端都能成功启动。找到目标了,过几天我尝试一下建一个docker镜像。 docker的价值还有不污染host系统,可以多版本运行等等~

> 目前从https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases > 下载了0.39.2-linux-x64.zip > 替换掉 dist/lib下的libffmpeg.so 文件,上面功能就正常了 good, 现在最新的好像用的是nw.js 0.38.0 版本,符合的只有 https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases/tag/0.38.4 下载了替换掉就可以查看视频了

Anyone wants to remove `@fortawesome/fontawesome-svg-core` and reduce bundle size could use the following snippet: ```jsx import type { IconDefinition } from '@fortawesome/fontawesome-common-types' import type { SVGProps } from 'react' export...

I can confirm that `options.RouteOptions.EnableControllerNameCaseInsensitive = true` did not help the issue.

> @sep2 this should be fixed in 8.0.9. Can you update, test again and close this if it is fixed for you? I tried 8.0.9 and the result is same,...

@xuzhg Please see the repro here. https://github.com/sep2/odata-test-lowercase Notice https://github.com/sep2/odata-test-lowercase/blob/main/ODataTest/EventsController.cs#L22 this can work because it is in lower case. If I change that line to `GetActivities`, it won't work then.

I did a bit research about this problem and leave my partial solution here, this supports `JsonDocument` as Edm Property type with some limitations: * serializer: only work if root...

Thanks for your reply! I will assume that means if I have an untyped object (which is a json structure returned from other API with unknown schema), I should recursively...

I did try to implement a custom serializer for `JsonDocument` https://github.com/OData/AspNetCoreOData/issues/309#issuecomment-1080141409, but there are some cases I cannot find a way to handle. I will try to implement a serializer...