| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2020-06-13 | xdg-shell: improve child handling | Isaac Freund | 5 | -21/+71 | |
| - wait until map to send tiled state - only set toplevels with no parent to tiled (toplevels with a parent are generally popup-like things such as a file chooser or yes/no prompt) - track dimesions and offset of the surface and take offset into account for rendering. | |||||
| 2020-06-13 | command: add view_padding option | Isaac Freund | 2 | -2/+5 | |
| 2020-06-13 | command: allow alpha in colors, simplify code | Isaac Freund | 7 | -63/+35 | |
| 2020-06-13 | code: simplify option handling | Isaac Freund | 5 | -34/+21 | |
| 2020-06-13 | command: add border_focused_color and border_unfocused_color options | lazy-dolphin | 7 | -5/+74 | |
| 2020-06-11 | docs: use release-safe in build instructions | Isaac Freund | 1 | -3/+7 | |
| 2020-06-11 | docs: update disclaimer | Isaac Freund | 1 | -4/+3 | |
| 2020-06-11 | docs: add IRC channel, remove matrix | Isaac Freund | 1 | -8/+3 | |
| 2020-06-11 | code: simplify view rendering | Isaac Freund | 2 | -22/+9 | |
| 2020-06-11 | command: don't zoom floating views | Isaac Freund | 1 | -0/+3 | |
| 2020-06-11 | render: floating as normal, focused views on top | Isaac Freund | 1 | -4/+16 | |
| This means that floating views can be (partially) obscured by normal views if they are low in the stack, and that the "full" layout will work a little nicer as the focused view is always the top rendered. | |||||
| 2020-06-10 | command: implement set-option | lazy-dolphin | 5 | -1/+78 | |
| Only border and padding options are currently available. | |||||
| 2020-06-10 | transactions: save transform, refactor rendering | Isaac Freund | 2 | -56/+45 | |
| 2020-06-09 | transactions: save and render subsurface buffers | Isaac Freund | 3 | -52/+78 | |
| 2020-06-09 | transactions: handle preemption take 2 | Isaac Freund | 5 | -12/+51 | |
| This implementation is far simpler than c0d7e71 as it takes advantage of wlroots's tracking of pending state. Additionally, we now send frame done events if a view that we are configuring commits with the wrong dimensions. This is necessary in order to trigger a redraw for some clients as well as being a more correct implementation of the protocol. | |||||
| 2020-06-09 | transactions: revert c0d7e71 | Isaac Freund | 6 | -99/+36 | |
| 2020-06-08 | transactions: propogate x/y of new box if needed | Isaac Freund | 1 | -3/+9 | |
| 2020-06-08 | transactions: set timeout back to 200ms | Isaac Freund | 1 | -1/+1 | |
| The change to 1000ms was an accident | |||||
| 2020-06-08 | transactions: handle preemption properly | Isaac Freund | 6 | -37/+94 | |
| when a transaction interrupts an ongoing transaction, we must be careful to handle the configures properly. This commit adds a new member to view so that we can store the dimensions sent with the last configure in order to determine if the preempting transaction should override the ongoing configure or not. Additionally, some views do not ack a configure if they already have the requested dimensions. This can happen if a pending configure setting alternative dimensions is overridden, so in this case we do not wait for an ack before committing the transaction. | |||||
| 2020-06-07 | code: remove dead code | Isaac Freund | 1 | -8/+0 | |
| 2020-06-06 | river-status: send view_tags on view output change | Isaac Freund | 1 | -0/+3 | |
| 2020-06-06 | river-status: simplify example client | Isaac Freund | 1 | -12/+7 | |
| 2020-06-05 | build: install man pages | Isaac Freund | 1 | -0/+4 | |
| No gzip, let distros compress if they want to | |||||
| 2020-06-05 | docs: remove trailing whitespace | Isaac Freund | 1 | -4/+4 | |
| 2020-06-05 | map: allow creating mappings with no modifiers | Isaac Freund | 2 | -1/+5 | |
| 2020-06-05 | docs: fix link to Config.zig | Isaac Freund | 1 | -2/+2 | |
| 2020-06-05 | docs: update commit style guidelines | Isaac Freund | 1 | -7/+19 | |
| Require a prefix for commit messages as this makes the log much more readable. Additionally, link Weston's contributing guidelines to encourage "recipe style" history. | |||||
| 2020-06-05 | river-status: implement example client | Isaac Freund | 2 | -1/+185 | |
| 2020-06-05 | river-status: use correct resource and fix crash | Isaac Freund | 1 | -1/+1 | |
| 2020-06-05 | river-status: send view_tags on view map/unmap | Isaac Freund | 3 | -4/+10 | |
| 2020-06-04 | Add man pages | Lennard Hofmann | 2 | -0/+214 | |
| 2020-06-04 | river-status: implement protocol | Isaac Freund | 15 | -28/+385 | |
| 2020-06-04 | river-status: add seat status object | Isaac Freund | 1 | -8/+50 | |
| 2020-06-04 | editorconfig: trim trailing whitespace | Isaac Freund | 1 | -0/+1 | |
| 2020-06-03 | build: scan river-status protocol | Isaac Freund | 1 | -19/+37 | |
| 2020-06-03 | river-status: fix typo | Isaac Freund | 1 | -1/+1 | |
| 2020-06-03 | river-status: create an object for each output | Isaac Freund | 1 | -16/+36 | |
| 2020-06-03 | Define the river status protocol | Isaac Freund | 2 | -47/+54 | |
| This is a refinement of the now obsolete river-window-management protocol which has been deleted. | |||||
| 2020-06-02 | Eliminate some magic numbers | Isaac Freund | 2 | -5/+6 | |
| 2020-06-02 | Use tag masks for tag commands and clean up | Isaac Freund | 9 | -282/+143 | |
| 2020-06-02 | Rename focus -> focus-view | Isaac Freund | 3 | -5/+5 | |
| 2020-06-02 | Clean up some memory leaks | Isaac Freund | 7 | -10/+42 | |
| 2020-06-02 | Don't recreate transaction timer unnecessarily | Isaac Freund | 1 | -15/+12 | |
| 2020-06-01 | Explain config through shell script in readme | Isaac Freund | 1 | -9/+20 | |
| 2020-06-01 | Replace _ with - as separator in commands | Isaac Freund | 2 | -18/+18 | |
| 2020-06-01 | Use + instead of | to separate modifiers | Isaac Freund | 1 | -1/+1 | |
| Although | makes more logical sense, it has another meaning in most shells. | |||||
| 2020-06-01 | De-hardcode all mappings | Isaac Freund | 2 | -217/+80 | |
| Move the default mappings to contrib/config.sh. | |||||
| 2020-06-01 | Add support for running a command on startup | Isaac Freund | 1 | -0/+41 | |
| 2020-06-01 | Really fix zig fmt CI | Isaac Freund | 2 | -6/+2 | |
| 2020-06-01 | Fix zig fmt for CI | Isaac Freund | 2 | -2/+6 | |
