Jaakko Keränen

Results 230 comments of Jaakko Keränen

The async address resolving is done by the Address class. The Socket constructor you modified is basically just for convenience. You can always do the resolving manually with Address first....

I see. Another change I would request that you do is move everything related to Guppy out of gmrequest.c into a guppy.c, and have a top-level object called `Guppy` that...

Status update: Don't worry, I haven't forgotten about this. I've just been too busy to look into this more closely. The plan is to get this into the v1.18 release...

I reviewed the latest changes here in the PR and they look fine apart from the UDP Socket stuff, as discussed before (i.e., should use Datagram instead of Socket). Could...

Yes, a branch in a forked repo should do.

SDL's Wayland backend is known to have various issues and instability with Lagrange. This could be contributing here. Could you attach here your CMake build configuration, especially the various `ENABLE_*`...

Yes, thank you. Looks like you are using the "simple" text renderer that doesn't support RTL text and complex Unicode compositions (HarfBuzz disabled). Is this intentional? The simple text renderer...

Hyphenation is not an easy feature to implement, as it depends on reliably knowing the language of the text and there also needs to be a database of hyphenated words...

This sounds very much like the app has both mouse and touch events active, and both are triggering actions simultaneously from input gestures. Generally speaking, the mobile iOS and Android...

SDL has a feature where touch events can be used to emulate mouse SDL events, and vice versa. This is because many SDL apps are written with only a mouse...