You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text input control_event was initially designed for mapping
SDL_TextInputEvent, limited to 32 characters.
For simplicity, the copy/paste feature was implemented using the same
control_event: it just sends the text to paste.
However, the pasted text might have a length breaking some assumptions:
- on the client, the event max-size was smaller than the text
max-length,
- on the server, the raw buffer storing the events was smaller than the
max event size.
Fix these inconsistencies, and encode the length on 2 bytes, to accept
more than 256 characters.
Fixes <#10>.
Since it involves non-backward compatible changes in the protocol for sending events, it will be on master only when the next release is out (to avoid people compiling master using the old incompatible prebuilt server)
I got a crash when trying to paste computer clipboard with ctrl+v:
Please tell me if you need details/testing.
(I used the PKGBUILD from https://linuxfr.org/users/rom1v/journaux/scrcpy-une-appli-pour-afficher-et-controler-des-devices-android#comment-1731993 to install, phone has lineageos from february)
The text was updated successfully, but these errors were encountered: