Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-23 | Implement atomic layout updates for tree operations | Ryan Dwyer | |
This implements atomic layout updates for when views map, reparent or unmap. | |||
2018-06-18 | Preserve buffers during transactions | Ryan Dwyer | |
* Also fix parts of the rendering where it was rendering the pending state instead of current. | |||
2018-06-11 | Merge remote-tracking branch 'upstream/master' into atomic | Ryan Dwyer | |
2018-06-09 | Merge pull request #2124 from emersion/drag-icons | Drew DeVault | |
Render drag icons | |||
2018-06-09 | Implement gaps (PR #2047) | Nate Symer | |
2018-06-09 | Render drag icons | emersion | |
2018-06-09 | Refactor everything that needs to arrange windows | Ryan Dwyer | |
* The arrange_foo functions are now replaced with arrange_and_commit, or with manually created transactions and arrange_windows x2. * The arrange functions are now only called from the highest level functions rather than from both high level and low level functions. * Due to the previous point, view_set_fullscreen_raw and view_set_fullscreen are both merged into one function again. * Floating and fullscreen are now working with transactions. | |||
2018-06-09 | Make main properties be the pending state | Ryan Dwyer | |
2018-06-09 | WIP: Atomic layout updates ground work | Ryan Dwyer | |
2018-06-08 | Switch restore workspaces to a nested for-loop | Brian Ashworth | |
2018-06-08 | Restore workspaces to outputs based on priority | Brian Ashworth | |
2018-06-07 | Merge pull request #2084 from RedSoxFan/runtime-var-expansion | emersion | |
Runtime variable expansion | |||
2018-06-06 | Switch output storing from list_t to wl_list | Brian Ashworth | |
2018-06-06 | Address emersions comments on output re-enabling | Brian Ashworth | |
2018-06-06 | Store sway_outputs so that they can be reenabled | Brian Ashworth | |
2018-06-06 | Remove tab/stack check for focusing after a split | Brian Ashworth | |
2018-06-06 | Fix focusing after splitting tabs/stacks | Brian Ashworth | |
2018-06-05 | Support runtime var expansion and set at runtime | Brian Ashworth | |
2018-06-05 | Fix movement crashes/issues | Brian Ashworth | |
2018-06-03 | Fix initial workspace orientation on a rotated output | Ryan Dwyer | |
2018-06-03 | Merge pull request #2096 from kupospelov/fix-title-update | emersion | |
Fix view title update order | |||
2018-06-03 | Fix potential crash when destroying workspace | Ryan Dwyer | |
`_container_destroy` emits a destroy event, and any listener for this event should have access to the full container, not a half destroyed one. `_container_destroy` also destroys the swayc, so we have to grab a reference to the sway_workspace so we can free it afterwards. This also fixes a memory leak where the floating container wasn't freed. Fixes #2092. | |||
2018-06-03 | Fix view title update order | Konstantin Pospelov | |
This commit fixes the function call order to make sure that the title texture is updated using the relevant global font size. | |||
2018-06-02 | Fix top border when a view is initially floating | Ryan Dwyer | |
Fixes #2085. | |||
2018-06-01 | Fix mpv damage issue when unfullscreening into floating | Ryan Dwyer | |
2018-06-01 | Fix fullscreen position | Ryan Dwyer | |
2018-06-01 | Don't unmaximize floating views | Ryan Dwyer | |
2018-06-01 | Fix getting adjacent output | Ryan Dwyer | |
2018-06-01 | Remove container_self_or_parent_floating | Ryan Dwyer | |
2018-06-01 | Rename container_set_geometry_from_view | Ryan Dwyer | |
2018-06-01 | Store swayc coordinates as layout-local | Ryan Dwyer | |
2018-06-01 | Rename set_maximized functions to set_tiled | Ryan Dwyer | |
2018-06-01 | Fix issues with sticky containers and workspaces | Ryan Dwyer | |
* Attach sticky containers to new workspaces when switching * Fire the close event *before* we start destroying the workspace to prevent a crash Because the sticky container now follows the visible workspace, this simplifies the rendering and container_at logic. | |||
2018-06-01 | Fix unfullscreening a floating view | Ryan Dwyer | |
2018-06-01 | Replace is_floating boolean with function | Ryan Dwyer | |
2018-06-01 | Use L_FLOATING instead of reapable boolean | Ryan Dwyer | |
2018-06-01 | Implement floating | Ryan Dwyer | |
2018-06-01 | Implement `floating enable` | Drew DeVault | |
2018-06-01 | Merge pull request #2081 from RedSoxFan/fix-2077 | emersion | |
Send reparent events in container_split | |||
2018-06-01 | Fix move perpendicular segfault | Brian Ashworth | |
2018-05-31 | Send reparent events in container_split | Brian Ashworth | |
2018-05-31 | Fix typo | Brian Ashworth | |
2018-05-31 | Fix moving out of tab/stack when only child | Brian Ashworth | |
2018-05-29 | Notify of subtree change | Brian Ashworth | |
2018-05-29 | Fix moving out of a tabbed/stacked workspace | Brian Ashworth | |
2018-05-29 | Fix breaking out of tabs/stacks | Brian Ashworth | |
2018-05-29 | Add tree representation to IPC workspace description | Ryan Dwyer | |
2018-05-28 | Merge pull request #2060 from RedSoxFan/focus-wrapping | emersion | |
Implement focus_wrapping | |||
2018-05-28 | Merge pull request #2058 from RyanDwyer/refactor-parse-title-format | emersion | |
Refactor parse_title_format | |||
2018-05-27 | Implement focus_wrapping | Brian Ashworth | |