-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Finish Wayland support with wl-clipboard-rs #71
Conversation
so clients without wayland don't use it
smithay-clipboard 0.1 requires smithay-client-toolkit 0.5, which requires wayland-client 0.22. Travis CI build was failing because the toolchain was grabbing a different version of wayland-client instead of making the sensible decision of picking whatever already worked with smithay-clipboard.
Hey, wl-clipboard-rs 0.4.0 has just been released with an important change: background mode no longer forks (instead, it spawns a thread), as forking is unsafe in multi-threaded applications, and can cause a number of surprising effects. Could you please update the PR to use 0.4 and see if it works fine? Thanks! |
Thanks for the update. I never actually used the Wayland support in this crate because I was waiting for it to be merged. My minimal testing just now doesn't reveal any changes in behavior. |
This pull request finishes the work abandoned in #65 adding Wayland clipboard support via wl-clipboard-rs.