| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-10-29 | Add support for wl_compositor@v6 | Kirill Chibisov | |
| 2023-10-21 | Use correct workspace vertical position for rendering | Ivan Molodetskikh | |
| 2023-10-21 | Stop updating focus during transitions | Ivan Molodetskikh | |
| This also includes touchpad swipes. | |||
| 2023-10-21 | Remove assert on activating window on inactive workspace | Ivan Molodetskikh | |
| 2023-10-21 | Rename variables to be less confusing | Ivan Molodetskikh | |
| 2023-10-21 | Crop workspaces during transition tightly | Ivan Molodetskikh | |
| 2023-10-14 | Add binds to move workspaces up and down | Ivan Molodetskikh | |
| 2023-10-14 | Add check for no empty workspaces invariant | Ivan Molodetskikh | |
| 2023-10-14 | Fix moving empty workspaces to original output | Ivan Molodetskikh | |
| 2023-10-14 | Fix by-idx workspace actions not cleaning up | Ivan Molodetskikh | |
| 2023-10-14 | Fix removing output not keeping empty focus on primary | Ivan Molodetskikh | |
| 2023-10-14 | Fix assertion message | Ivan Molodetskikh | |
| 2023-10-11 | Add a few more Tracy spans | Ivan Molodetskikh | |
| 2023-10-11 | Draw focus ring as border on SSD windows | Ivan Molodetskikh | |
| With SSD we're reasonably sure that the window is a rectangle with no rounded corners, so a rectangular border should work. | |||
| 2023-10-11 | layout: Store location in FocusRing | Ivan Molodetskikh | |
| 2023-10-10 | Add screenshot-window action | Ivan Molodetskikh | |
| 2023-10-08 | Add barebones three-finger-swipe workspace switch | Ivan Molodetskikh | |
| Notable omission is velocity tracking. | |||
| 2023-10-07 | Update bounds of toplevel windows | Ivan Molodetskikh | |
| 2023-10-07 | Add gaps setting | Ivan Molodetskikh | |
| The past few refactors have led up to this point, and now it's finally possible. | |||
| 2023-10-07 | layout: Refactor view offset, padding, work area handling | Ivan Molodetskikh | |
| Fixes broken padding on fullscreen windows, especially with struts on the sides present. It is now view offset's job to include padding and struts. | |||
| 2023-10-05 | layout: Add every_op test from starting state | Ivan Molodetskikh | |
| 2023-10-05 | layout: Handle padding in ColumnWidth::resolve() | Ivan Molodetskikh | |
| 2023-10-05 | Refactor layout for configurability, add preset-column-widths option | Ivan Molodetskikh | |
| layout.rs finally gets a struct actually named Layout. | |||
| 2023-10-04 | layout: Store view size in Columns | Ivan Molodetskikh | |
| 2023-10-03 | Add set-column-width action | Ivan Molodetskikh | |
| 2023-10-01 | Avoid sending frame callbacks to invisible surfaces | Ivan Molodetskikh | |
| 2023-10-01 | Make find_window_and_output() accept non-mut self | Ivan Molodetskikh | |
| 2023-09-30 | Compute view offset relative to anim target | Ivan Molodetskikh | |
| This enables quickly tapping focus right-left to keep typing in the current window while showing the next window. Resolves https://github.com/YaLTeR/niri/issues/26 | |||
| 2023-09-30 | Refactor frame scheduling | Ivan Molodetskikh | |
| Combine the redraw state variables into one enum, and refactor to get rid of the requirement that a VBlank must queue a subsequent redraw. Also fix the bug where ongoing animations that produced no damage could stall the redrawing. | |||
| 2023-09-29 | Throttle frame callbacks to once per monitor refresh | Ivan Molodetskikh | |
| Under some circumstances, the compositor can get into a commit-frame callback busy loop with a client. For example, if a client redraws on frame callbacks, but the resulting frame has empty damage (e.g. the damaged part of the client is outside the monitor). Or if the client simply commits with empty damage (looking at you, Firefox). This behavior is compliant with the Wayland specification and with the intended idea of frame callbacks, but causes a lot of unnecessary CPU usage in the client and the compositor. To solve this problem, this commit introduces frame callback throttling. Every surface may only receive a single frame callback in one monitor refresh cycle. If a surface commits resulting in no KMS frame submission, a timer is created, that will fire at the predicted would- be-VBlank time, and send the accumulated frame callbacks. This way, a surface that redraws on frame callbacks will not notice any change in frame callback delivery, if its commits suddenly stop producing KMS updates. | |||
| 2023-09-28 | layout: Add communicate op to tests | Ivan Molodetskikh | |
| 2023-09-28 | layout: Refresh windows too | Ivan Molodetskikh | |
| This will send output enter/leave to new popups. | |||
| 2023-09-27 | layout: Use actual working area on workspace creation | Ivan Molodetskikh | |
| Fixes https://github.com/YaLTeR/niri/issues/19 | |||
| 2023-09-27 | layout: Add more ops for proptest to play with | Ivan Molodetskikh | |
| 2023-09-27 | layout: Add randomized test | Ivan Molodetskikh | |
| 2023-09-27 | Fix test name | Ivan Molodetskikh | |
| 2023-09-26 | Fix panic when the last window on previous workspace is closed | Ivan Molodetskikh | |
| 2023-09-26 | Extract check_ops | Ivan Molodetskikh | |
| 2023-09-26 | Fix panic when adding previously-removed output sometimes | Ivan Molodetskikh | |
| 2023-09-26 | Fix verify_invariants() asserts | Ivan Molodetskikh | |
| 2023-09-26 | Add layer shell exclusive zone support | Ivan Molodetskikh | |
| 2023-09-26 | Make focus ring configurable | Ivan Molodetskikh | |
| 2023-09-24 | Add focus rings | Ivan Molodetskikh | |
| 2023-09-24 | layout: Focus prev column when removing just created column | Ivan Molodetskikh | |
| This works similar to tabs in Firefox: when you create a tab and then close it without focusing any other tabs, the focus returns to the previously-focused tab, rather than the usual next tab. The logic is that in this case, the new tab was likely transient, and the user wants to get right back to what they were doing. In niri's case, this also serves as a workaround for wl-clipboard spawning and destroying a window, messing up the focus. | |||
| 2023-09-24 | layout: Preserve active column when column to the left is removed | Ivan Molodetskikh | |
| 2023-09-21 | Add output configuration & integer scaling support | Ivan Molodetskikh | |
| 2023-09-21 | layout: Fix workspace output updating | Ivan Molodetskikh | |
| 2023-09-16 | Add by-index workspace commands and binds | Ivan Molodetskikh | |
| 2023-09-13 | layout: Correct view offset when swapping columns | Ivan Molodetskikh | |
| 2023-09-13 | Implement minimizing view movement on changes | Ivan Molodetskikh | |
| Before this commit, windows were always left-aligned. Now, when changing focus, if the window is fully visible, the view doesn't move. If the window is not fully visible, the view is moved the minimum amount. | |||
