Arkadiusz Wójcik

Results 9 comments of Arkadiusz Wójcik

@dodyg in your hierarchical Content Items with `ListPart ` are you also have experiencing this #4749 (see second comment) ?

I have some progress on this, but further work depends on this PR: #201. Chunked data support is required because USB CEC ADC config descriptor length is above regular packet...

With #201 merged, I was playing around with USB-CDC. I had a working prototype, but the way the config was defined was very ugly. Now I have a new prototype...

I can image this feature as follows. From theme metadata we read all breakpoints so we know what aspect ratio of images should be supported, besides we need to fill...

Or maybe it doesn't have to be done by media library when uploading image but instead in image tag helper when image is rendered for a first time and responsive...

May I ask where exactly in template we could store size params? Drupal for example use optional `breakpoints.yml ` file in template so some modules like Responsive Images module can...

I would like to give quick summary here. In my opinion such feature should look like this: - New PictureField element in Media module or different one - PictureField allows...

My current solution: ``` public class ResponsiveImageTagFilter : ILiquidFilter { private readonly IMediaFileStore _mediaFileStore; public ResponsiveImageTagFilter(IMediaFileStore mediaFileStore) { _mediaFileStore = mediaFileStore; } public async ValueTask ProcessAsync(FluidValue input, FilterArguments arguments, TemplateContext...