aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-08Merge pull request #959 from VincentVanlaer/xwayland-lazyemersion
Add the option to start Xwayland only when a client connects
2018-05-08Document xwayland rootston config changesVincent Vanlaer
2018-05-08Make lazy xwayland start default in rootstonVincent Vanlaer
2018-05-08Make xwayland_finish* clean up wlr_xwaylandVincent Vanlaer
2018-05-08Merge pull request #963 from emersion/rootston-output-outdated-commentemersion
rootston: remove outdated comment
2018-05-08rootston: remove outdated commentemersion
2018-05-08Merge pull request #962 from Ongy/layer-surface-atDrew DeVault
add wlr_layer_surface_surface_at
2018-05-08add wlr_layer_surface_surface_atMarkus Ongyerth
Adds wlr_layer_surface_surface_at, this is consistent with the other shell implementations, and simplifies handling in compositors.
2018-05-07Merge pull request #957 from emersion/output-damage-max-rectsDrew DeVault
output-damage: limit the number of damaged rectangles
2018-05-07Clean up eventsVincent Vanlaer
2018-05-07Add beter handling for Xwayland failing at startupVincent Vanlaer
2018-05-06Make startup command no longer wait for xwaylandVincent Vanlaer
2018-05-06Add option to rootston to start xwayland lazyVincent Vanlaer
2018-05-06Allow xwayland to start lazilyVincent 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-05output-damage: limit the number of damaged rectanglesemersion
2018-05-05Merge pull request #956 from ↵Drew DeVault
Flow-It/add-options-to-exclude-rootston-and-examples Add options to exclude rootston and examples at compilation
2018-05-05Add option to disable examples buildflorian.weigelt
Compiling the examples is useful for testing and development, but less useful for actual users of wlroots. This commit adds the option --enable-examples to set weather to include the examples at compilation or not. The default value is True, so the current behaviour remains unchanged.
2018-05-05Merge pull request #954 from kkartaltepe/readme-fixemersion
Fix xcb/xkb swap in README
2018-05-05Add option to disable rootston buildflorian.weigelt
Compiling the rootston example compositor is useful for testing and development, but less useful for actual users of wlroots, who might prefer sway or other compositors. This commit adds the option --enable-rootston to set weather to include rootston at compilation or not. The default value is True, so the current compilation behaviour remains unchanged.
2018-05-05Fix xcb/xkb swap in READMEKurt Kartaltepe
2018-05-04Merge pull request #953 from emersion/xwayland-utf8-titleDrew DeVault
Use UTF-8 xwayland window title if available
2018-05-04Use UTF-8 xwayland window title if availableemersion
2018-05-04Merge pull request #936 from emersion/full-hardware-cursorsemersion
output: always use hardware cursors if available
2018-05-04Merge pull request #951 from chebykinn/fix-maybe-uninitializedemersion
Fix gcc maybe-uninitialized in wlr_cursor apply_output_transform
2018-05-04Merge pull request #931 from emersion/redesign-resource-destroyDrew DeVault
Redesign resource destruction
2018-05-04Fix gcc maybe-uninitialized in wlr_cursor apply_output_transformIvan Chebykin
2018-05-04Merge pull request #950 from emersion/fix-xdg-popup-not-topmost-segfaultDrew DeVault
Fix a rootston crash when a client creates non-topmost popups
2018-05-04Fix a rootston crash when a client creates non-topmost popupsemersion
2018-05-03Merge pull request #947 from Morganamilo/typosemersion
Fix typos across documentation, comments and strings
2018-05-03seat: implement inert seat resourcesemersion
2018-05-03Fix typos in comments and stringsmorganamilo
2018-05-03Fix typos in documentationmorganamilo
2018-05-03Merge pull request #943 from agx/env-varsDrew DeVault
Document env vars used by wlroots/rootston
2018-05-03Merge pull request #945 from agx/wlr-drm-no-atomicemersion
drm: only disable atomic modesetting when WLR_DRM_NO_ATOMIC == 1
2018-05-03data-device: make sure resources are correctly destroyedemersion
2018-05-03output: simplify and update code styleemersion
2018-05-03linux-dmabuf: correctly destroy resourcesemersion
2018-05-03compositor, surface: correctly destroy resourcesemersion
2018-05-03Update CONTRIBUTING.md with protocol implementation guidelinesemersion
2018-05-03drm: only disable atomic modesetting when WLR_DRM_NO_ATOMIC == 1Guido Günther
Don't allow any value of the env var to disable atomic mode setting.
2018-05-03Document env vars used by wlrootsGuido Günther
2018-05-03Merge pull request #935 from agx/cursor-output-transformDrew DeVault
wlr_cursor: transform absolute coordinates
2018-05-03Merge pull request #938 from emersion/reorder-seatDrew DeVault
seat: split into multiple files
2018-05-03seat: split into multiple filesemersion
2018-05-03Merge pull request #937 from emersion/reorder-data-deviceemersion
data-device: split into multiple files
2018-05-03Merge pull request #939 from ammen99/masteremersion
rootston: remove mode and transform signals when output is destroyed
2018-05-03backend/wayland: don't transform pointer eventsGuido Günther
We do this in a backend independent way in wlr_cursor now.
2018-05-03backend/x11: don't transform pointer eventsGuido Günther
We do this in a backend independent way in wlr_cursor now.
2018-05-03wlr_cursor: transform absolute coordinatesGuido Günther
Honor output rotation when processing absolute coordinates. This fixes touch events on rotated outputs. Fixes #928
2018-05-03rootston: remove mode and transform signals when output is destroyedIlia Bozhinov