aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* Revert "Refactor tree"Libravatar Drew DeVault2018-03-29
|
* Merge pull request #1647 from acrisci/refactor-treeLibravatar Drew DeVault2018-03-29
|\ | | | | Refactor tree
| * arrange windowsLibravatar Tony Crisci2018-03-29
| |
| * rename container_for_each_descendentLibravatar Tony Crisci2018-03-29
| |
| * address feedbackLibravatar Tony Crisci2018-03-29
| |
| * 80colLibravatar Tony Crisci2018-03-29
| |
| * fix container_get_in_direction nameLibravatar Tony Crisci2018-03-29
| |
| * rename container destroy funcLibravatar Tony Crisci2018-03-29
| |
| * rename layout initLibravatar Tony Crisci2018-03-29
| |
| * more renaming thingsLibravatar Tony Crisci2018-03-29
| |
| * rename container functionsLibravatar Tony Crisci2018-03-29
| |
| * remove swayc_t typedefLibravatar Tony Crisci2018-03-29
| |
| * move tree includes to their own directoryLibravatar Tony Crisci2018-03-29
| |
* | Merge pull request #1652 from ascent12/glclearLibravatar emersion2018-03-29
|\ \ | | | | | | Clear buffer after beginning renderer
| * | Clear buffer after beginning rendererLibravatar Scott Anderson2018-03-30
|/ /
* / Maximize xdg shell surfaces on creationLibravatar Drew DeVault2018-03-29
|/ | | | | | | Makes them look better yo In the future we might want to only do this for tiled windows, and let floating windows do their own thing.
* Merge pull request #1643 from acrisci/xdg-protocol-headerLibravatar Drew DeVault2018-03-28
|\ | | | | add xdg-shell protocol header
| * add xdg-protocol headerLibravatar Tony Crisci2018-03-28
|/
* Merge pull request #1642 from swaywm/layer-shellLibravatar Drew DeVault2018-03-28
|\ | | | | Implement layer shell (rendering)
| * Address review feedbackLibravatar Drew DeVault2018-03-28
| |
| * Render layer surfaces and respect exclusive zoneLibravatar Drew DeVault2018-03-28
| |
| * Add initial layer shell skeletonLibravatar Drew DeVault2018-03-28
|/
* Merge pull request #1638 from swaywm/swaybg-layersLibravatar Drew DeVault2018-03-28
|\ | | | | Reimplement swaybg using surface layers
| * Address review commentsLibravatar Drew DeVault2018-03-28
| |
| * Refactor configure/ack configure/commit flowLibravatar Drew DeVault2018-03-28
| |
| * Remove obsolete client codeLibravatar Drew DeVault2018-03-28
| |
| * Fix styleLibravatar Drew DeVault2018-03-28
| |
| * s/scaling_mode/background_mode/gLibravatar Drew DeVault2018-03-28
| | | | | | | | Since it now includes SOLID_COLOR this is a more appropriate name.
| * Implement image backgroundsLibravatar Drew DeVault2018-03-28
| |
| * Add solid-color rendering to swaybgLibravatar Drew DeVault2018-03-28
| |
| * Add client protocols and swaybg skeletonLibravatar Drew DeVault2018-03-28
|/
* Merge pull request #1641 from swaywm/transformed-eventsLibravatar Drew DeVault2018-03-28
|\ | | | | Update input events per swaywm/wlroots#765
| * Update input events per swaywm/wlroots#765Libravatar Drew DeVault2018-03-28
|/
* Add subprojects to gitignoreLibravatar Drew DeVault2018-03-28
|
* Fix broken repo referencesLibravatar Drew DeVault2018-03-27
|
* Move .build.yml repo references to github.comLibravatar Drew DeVault2018-03-27
|
* Fix lingering xdg shell issuesLibravatar Drew DeVault2018-03-27
|
* Update API to match latest wlrootsLibravatar Drew DeVault2018-03-27
|
* Merge pull request #1626 from emersion/wlroots-updateLibravatar Drew DeVault2018-03-19
|\ | | | | Update wlroots API
| * Update wlroots APILibravatar emersion2018-03-19
|/ | | | | Breaking changes in wlr_xdg_shell_v6 and wlr_renderer have been made upstream.
* Merge pull request #1625 from emersion/matrix-redesignLibravatar Drew DeVault2018-03-18
|\ | | | | Update rendering code for wlroots matrix redesign
| * Update rendering code for wlroots matrix redesignLibravatar emersion2018-03-15
|/
* Merge pull request #1622 from emersion/wlroots-subproject-fallbackLibravatar Drew DeVault2018-03-15
|\ | | | | meson: allow wlroots to be a subproject
| * meson: allow wlroots to be a subprojectLibravatar emersion2018-03-15
| |
* | Merge pull request #1623 from emersion/ipc-output-modesLibravatar Drew DeVault2018-03-13
|\ \ | |/ |/| ipc: add output modes
| * ipc: add output modesLibravatar emersion2018-03-12
|/
* Merge pull request #1617 from swaywm/drop-travisLibravatar Drew DeVault2018-03-04
|\ | | | | Drop Travis in favor of builds.sr.ht
| * Drop Travis in favor of builds.sr.htLibravatar Drew DeVault2018-03-04
|/
* Merge pull request #1616 from martinetd/xwayland_nowidthLibravatar Drew DeVault2018-03-03
|\ | | | | xwayland: do not send surface configure when no width/height
| * xwayland: do not send surface configure when no width/heightLibravatar Dominique Martinet2018-03-03
|/ | | | | | | | | | | | The code in apply_horiz_layout systematically does `set_position` then `set_size`, so for new windows there is an invalid call. For old windows there are two calls when only one is needed, with the current code set_position could not send any surface configure without impact, but in the future it might be needed? Native wayland surfaces do not need to know where they are (the set_position handled only updates the sway internal view variable), why does X11 window need that?