Felipe Machado
Felipe Machado
The HttpClient instance should be held to as mush as possible. It should have been possible to pass a HttpClient to Sender, as to prevent Sender from going out of...
If you set the background color of the TagView the tags are not drawn properly and it shows completely blank. The tags are there, because the TagView is using the...
By using maven { url "https://jitpack.io" } we can add a dependency directly in graddle to a release here in github, but this project doesn't have any releases so we...
I'm using a value converter to render enums as strings: ```csharp TemplateOptions.Default.ValueConverters.Add((v) => v is Enum e ? $"{e}" : null); ``` I was wondering if there's an easier (built-in)...
Is it possible to set constraints to an int option so that it have min and max allowed values? I think that's a pretty common scenario, but the following fails:...
I know I can pass a `JpegEncoderOptions` object when calling `MagicProcessor.ProcessImages`, but I'm at a loss how to set default jpeg encoder options. Since the encoder is selected automatically depending...
Added the NoLineBreak flag to TextPath to make it possible to conditionally prevent a new line break from being rendered after the path. Created Unit tests and added extension method...
Currently `TextPath` includes an unconditional line break after rendering: ``` public IEnumerable Render(RenderOptions options, int maxWidth) ... // Insert a line break parts.Add(Segment.LineBreak); return parts; } ``` It would be...
Hi guys, I'm having trouble with a production system and in this past month I hardly had the chance to reply to everyone here. I'll pull the pending merge requests...
I'm not a C developer, but I wanted to try to create some games with raylib. This will really be a stupid question, but how can I add resources to...