Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-10 | Fix Xwayland cleanup | Vincent Vanlaer | |
Fixes #964 | |||
2018-05-08 | Merge pull request #959 from VincentVanlaer/xwayland-lazy | emersion | |
Add the option to start Xwayland only when a client connects | |||
2018-05-08 | Make xwayland_finish* clean up wlr_xwayland | Vincent Vanlaer | |
2018-05-07 | Clean up events | Vincent Vanlaer | |
2018-05-07 | Add beter handling for Xwayland failing at startup | Vincent Vanlaer | |
2018-05-06 | Allow xwayland to start lazily | Vincent Vanlaer | |
Makes the xwayland startup process two phased. The first phase just initialises the X11 sockets. The second phase starts the Xwayland server itself. When starting xwayland lazily the second phase will be postponed until a client has connected to the X11 socket. Changes in behaviour: The DISPLAY environment is now set immediately after the X11 sockets are created. When the Xwayland server is killed or crashes, the sockets will not be recreated, but reused. Fixes #849: Start up Xwayland lazily | |||
2018-05-04 | Use UTF-8 xwayland window title if available | emersion | |
2018-04-27 | xwayland: make utility windows unmanaged again | emersion | |
7f70d244a9802207c258bd5da6d4ada5eb15484a made utility windows managed, because it made sense according to the spec. Turns out Firefox uses them for popups. | |||
2018-04-27 | Merge pull request #918 from emersion/xwayland-unmapped-request-configure | Drew DeVault | |
xwayland: forward configure events to compositor when unmapped | |||
2018-04-26 | xwayland: fix some Chromium comboboxes | emersion | |
Some comboboxes (e.g. in chrome://flags) are advertized as… Notifications of course! Yeah, notifications, the thing that tells you you have mail, your battery is low, or the dog has eaten your carpet. This isn't the first time we notice Chromium's X11 backend is pretty shit. Anyway, added notifications and splash screens to the list of unmanaged windows. Also removed utility windows because those should be managed, but maybe I'm wrong and I'll revert this. | |||
2018-04-26 | xwayland: forward configure events to compositor when unmapped | emersion | |
2018-04-26 | xwayland/selection: fix little memory leak on error | emersion | |
2018-04-26 | Merge pull request #882 from emersion/unprefix-local-symbols | Drew DeVault | |
Remove wlr_ prefix from local symbols | |||
2018-04-26 | Use correct printf format specifiers for ssize_t | Guido Guenther | |
This unbreaks the build on armhf that otherwise fails like ../xwayland/selection/incoming.c: In function 'xwm_data_source_write': ../include/wlr/util/log.h:34:17: error: format '%ld' expects argument of type 'long int', but argument 6 has type 'ssize_t {aka int}' [-Werror=format=] _wlr_log(verb, "[%s:%d] " fmt, wlr_strip_path(__FILE__), __LINE__, ##__VA_ARGS__) ^ ../xwayland/selection/incoming.c:34:2: note: in expansion of macro 'wlr_log' wlr_log(L_DEBUG, "wrote %zd (chunk size %ld) of %d bytes", ^~~~~~~ ../xwayland/selection/incoming.c:34:44: note: format string is defined here wlr_log(L_DEBUG, "wrote %zd (chunk size %ld) of %d bytes", ~~^ %d | |||
2018-04-25 | Don't use the wlr_ prefix for static functions | emersion | |
2018-04-25 | Make sure we don't use others' prefixes | emersion | |
2018-04-22 | Merge pull request #885 from emersion/remove-surface-subsurface | Drew DeVault | |
Remove wlr_surface::subsurface, add wlr_subcompositor | |||
2018-04-21 | xwayland: preserve the PATH variable | n3rdopolis | |
Some systems don't have xwayland in /usr/bin, but in other paths. wlroots was unable to find Xwayland binaries outside of standard locations | |||
2018-04-21 | Fix segfaults in wlr_surface_is_* | emersion | |
2018-04-13 | xwayland: emit new_surface when unmapped | emersion | |
2018-04-11 | Always unmap before destroying surface | emersion | |
2018-04-08 | Add wlr_xwayland_surface_ping | emersion | |
2018-04-08 | xwayland: add _NET_WM_WINDOW_TYPE_MENU support | emersion | |
2018-04-06 | Emit xwayland unmap signal before unmapping | emersion | |
This allows compositors to access the surface being unmapped. This is also more consistent with the destroy signal. | |||
2018-04-03 | xwayland: refactor selection code | emersion | |
2018-04-03 | xwayland: fix incoming incr transfers | emersion | |
2018-04-03 | Merge branch 'master' into xwayland-dnd | emersion | |
2018-04-03 | xwayland: use strndup in xwm_get_atom_name | emersion | |
2018-04-03 | xwayland: fix outgoing incr transfers | emersion | |
2018-04-03 | xwayland: only send one target at a time | emersion | |
2018-04-02 | xwayland: improve xwm_selection_send_notify | emersion | |
2018-04-02 | Missed a spot | Drew DeVault | |
2018-04-02 | xwayland: support multiple wayland → xwayland selection transfers | emersion | |
This fixes drag'n'drop support for Chromium. | |||
2018-04-02 | Merge branch 'master' into xwayland-dnd | emersion | |
2018-03-31 | xwayland: specify xwm cursor stride in bytes | emersion | |
2018-03-30 | xwayland: rename map_notify to map for consistency | emersion | |
2018-03-29 | xwayland: use a separate window for drag'n'drop | emersion | |
2018-03-29 | xwayland: receive DND_FINISHED | emersion | |
2018-03-29 | xwayland: allow drag data source transfer after drag ends | emersion | |
2018-03-29 | xwayland: send drag'n'drop action to data source | emersion | |
2018-03-28 | xwayland: improve error handling | emersion | |
2018-03-28 | xwayland: make wayland → xwayland work | emersion | |
2018-03-28 | xwayland: send DND_LEAVE | emersion | |
2018-03-28 | xwayland: fixes events not flushed causing issues with GTK apps | emersion | |
2018-03-28 | xwayland: print names of unsupported properties and client messages | emersion | |
2018-03-28 | xwayland: send DND_DROP | emersion | |
2018-03-28 | xwayland: send DND_POSITION | emersion | |
2018-03-28 | xwayland: send DND_ENTER | emersion | |
2018-03-27 | xwayland: create DND window, add DND atom helpers | emersion | |
2018-03-25 | Fix segfault in xwm_read_data_source | emersion | |