Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-04 | Merge pull request #1432 from ForTheReallys/relative-pointers | emersion | |
Relative pointers | |||
2019-01-03 | Merge pull request #1449 from swaywm/tinywl | Drew DeVault | |
Merge tinywl | |||
2019-01-03 | Use pkg-config for tinywl deps | Drew DeVault | |
2019-01-03 | Annotate the source | Drew DeVault | |
2019-01-03 | Update READMEs per tinywl merge | Drew DeVault | |
2019-01-03 | Merge remote-tracking branch 'tinywl/master' into tinywl | Drew DeVault | |
2019-01-02 | Only send relative events to the focused client in rootston | Alex Maese | |
2019-01-02 | Finish addressing @emersion's comments | Alex Maese | |
2018-12-30 | examples/layer-shell.c: check popup exists before drawing | Ian Fan | |
2018-12-26 | Merge pull request #1444 from emersion/edid-phys-size | Drew DeVault | |
backend/drm: get physical size from libdrm | |||
2018-12-23 | Rename some variables for clarity | Alex Maese | |
2018-12-23 | backend/drm: get physical size from libdrm | emersion | |
Values from libdrm are likely more reliable than raw values from the EDID. We were already using values from libdrm, but they were overwritten by parse_edid. See drm.c: wlr_conn->output.phys_width = drm_conn->mmWidth; wlr_conn->output.phys_height = drm_conn->mmHeight; | |||
2018-12-22 | Protect against redefining MESA_EGL_NO_X11_HEADERS | Jente Hidskes | |
2018-12-22 | Merge pull request #1441 from Timidger/box-parameter-standardize | Drew DeVault | |
Standardize the wlr_box input paramaters | |||
2018-12-21 | Standardize the wlr_box input paramaters | Timidger | |
Fixes #1094 | |||
2018-12-21 | Add a listener for when the pointer gets destroyed | Alex Maese | |
2018-12-21 | Address more of @emersion's comments | Alex Maese | |
2018-12-21 | Add unaccelerated pointer values to wlr_event_pointer_motion events | Alex Maese | |
2018-12-21 | Address @emersion's comments | Alex Maese | |
2018-12-21 | Remove pointer resource from relative pointer | Alex Maese | |
2018-12-21 | Only send relative motion to correct seat | Alex Maese | |
2018-12-21 | Removed relative pointers from wlr_seat | Alex Maese | |
2018-12-21 | Remove wl_client from wlr_relative_pointer_v1 | Alex Maese | |
2018-12-21 | Add wlr_relative_pointer_v1.h to meson.build | Alex Maese | |
2018-12-21 | relative_pointer: implementation and code fixes | random human | |
In particular, modified public creator and destructor function names, added a display destroy listener, safely extract user data from resources, send correct time (in usecs) in rootston, etc. | |||
2018-12-21 | relative_pointer: add relative-pointer example | random human | |
On left mouse button click, locks the cursor and renders relative motion events. | |||
2018-12-21 | relative_pointer: send frame event to pointer for Xwayland | random human | |
2018-12-21 | relative_pointer: code formatting fixes | random human | |
2018-12-21 | relative_pointer: implement protocol events | random human | |
Implement zwp_relative_pointer_v1.relative_motion event, along with some glue code in wlr_seat_pointer and rootston. | |||
2018-12-21 | relative_pointer: implement protocol requests | random human | |
Flesh out the details of the structs, signals, callback functions, and so on. weston-resizer silently works at this point (no events sent). | |||
2018-12-21 | relative_pointer: create skeleton and build | random human | |
Add protocol, header and type files to build. Create skeleton structs, creator and destroyer, and define implementations. | |||
2018-12-21 | Merge pull request #1440 from sghctoma/fbsd-manifest | emersion | |
Fix FreeBSD build manifest | |||
2018-12-21 | Fix FreeBSD build manifest | sghctoma | |
Recent libinput-related changes in the ports tree made it necessary to install devel/evdev-proto before x11/libinput. | |||
2018-12-20 | Merge pull request #1439 from ammen99/master | emersion | |
rootston: create foreign toplevel handle before sending outputs | |||
2018-12-20 | rootston: create foreign toplevel handle before sending outputs | Ilia Bozhinov | |
Otherwise the initial list of outputs isn't sent to foreign-toplevel clients. | |||
2018-12-16 | Merge pull request #1435 from emersion/duplicate-custom-modes | emersion | |
backend/drm: don't insert duplicate custom modes, fix refresh rate | |||
2018-12-16 | backend/drm: don't insert duplicate custom modes, fix refresh rate | emersion | |
2018-12-15 | Merge pull request #1377 from tokyovigilante/switch-events | emersion | |
Add support for libinput_switch input devices | |||
2018-12-15 | Remove unused variables | Ryan Walklin | |
2018-12-15 | Improve event matching logic | Ryan Walklin | |
2018-12-15 | Fix style nits | Ryan Walklin | |
2018-12-15 | Working switches in rootston: | Ryan Walklin | |
Factor out switch handling to separate file Add formal enum for toggle action Implement binding actions | |||
2018-12-15 | Remove debug logs | Ryan Walklin | |
2018-12-15 | Update config struct, reduce complexity and correctly parse config.ini | Ryan Walklin | |
2018-12-15 | Remove redundant signal in seat.c | Ryan Walklin | |
2018-12-15 | Factor out binding command execution to separate file | Ryan Walklin | |
2018-12-15 | [WIP][DONTMERGE]Add support for libinput_switch input devices | Ryan Walklin | |
These are used primarily by laptops to signal the state of the lid (open/closed) and tablet mode if supported, based on ACPI events. | |||
2018-12-13 | Merge pull request #1434 from martinetd/xwayland_clearenv | emersion | |
xwayland: remove clearenv() call | |||
2018-12-13 | xwayland: remove clearenv() call | Dominique Martinet | |
This has been causing troubles for some of our users and only been there for legacy reasons, we trust Xwayland just as much as your next program and weston doesn't take any such care when starting it. | |||
2018-12-12 | Merge pull request #1433 from ammen99/fix-layer-shell-unconstrain | Drew DeVault | |
xdg-popup: fix wlr_xdg_popup_get_toplevel_coords() |