]> git.lizzy.rs Git - bspwm.git/blob - doc/CHANGELOG.md
bspwm: port rounded corners patch to latest version
[bspwm.git] / doc / CHANGELOG.md
1 # From 0.9.9 to 0.9.10
2
3 ## Additions
4
5 - New node descriptor: `first_ancestor`.
6 - New node modifiers: `horizontal`, `vertical`.
7
8 ## Changes
9
10 - The node descriptors `next` and `prev` might now return any node. The previous behavior can be emulated by appending `.!hidden.window`.
11 - The node descriptors `pointed`, `biggest` and `smallest` now return leaves (in particular `pointed` will now return the *id* of a pointed receptacle). The previous behavior can be emulated by appending `.window`.
12 - The *query* command now handles all the possible descriptor-free constraints (for example, `query -N -d .active` now works as expected).
13 - The rules can now match against the window's names (`WM_NAME`).
14 - The configuration script now receives an argument to indicate whether is was executed after a restart or not.
15 - The *intermediate consequences* passed to the external rules command are now in resolved form to avoid unwanted code execution.
16
17 # From 0.9.8 to 0.9.9
18
19 - Fix a memory allocation bug in the implementation of `wm --restart`.
20 - Honor `single_monocle` when the `hidden` flag is toggled.
21
22 # From 0.9.7 to 0.9.8
23
24 - Fix a potential infinite loop.
25 - Fix two bugs having to do with `single_monocle`.
26 - Honor `removal_adjustment` for the spiral automatic insertion scheme.
27
28 # From 0.9.6 to 0.9.7
29
30 This release fixes a bug in the behavior of `single_monocle`.
31
32 # From 0.9.4 to 0.9.6
33
34 ## Additions
35
36 - New *wm* command: `--restart`. It was already possible to restart `bspwm` without loosing the current state through `--{dump,load}-state`, but this command will also keep the existing subscribers intact.
37 - New settings: `automatic_scheme`, `removal_adjustment`. The automatic insertion mode now provides three ways of inserting a new node: `spiral`, `longest_side` (the default) and `alternate`. Those schemes are described in the README.
38 - New settings: `ignore_ewmh_struts`, `presel_feedback`, `{top,right,bottom,left}_monocle_padding`.
39 - New node descriptor: `smallest`.
40 - New desktop modifier: `active`.
41
42 ## Changes
43
44 - The `focused` and `active` modifiers now mean the same thing across every object.
45 - Fullscreen windows are no longer sent to the `above` layer. Within the same layer, fullscreen windows are now above floating windows. If you want a floating window to be above a fullscreen window, you'll need to rely on layers.
46 - Pseudo-tiled windows now shrink automatically.
47
48 ## Removals
49
50 - The `paddingless_monocle` setting was removed (and subsumed). The effect of `paddingless_monocle` can now be achieved with:
51 ```shell
52 for side in top right bottom left; do
53         bspc config ${side}_monocle_padding -$(bspc config ${side}_padding)
54 done
55 ```
56
57 # From 0.9.3 to 0.9.4
58
59 ## Changes
60
61 - The following events: `node_{manage,unmanage}` are now `node_{add,remove}`.
62
63 ## Additions
64
65 - New monitor/desktop/node descriptors: `any`, `newest`.
66 - New node flag: `marked`.
67 - New monitor descriptor: `pointed`.
68 - New *wm* command: `--reorder-monitors`.
69 - Receptacles are now described in the manual.
70 - New `--follow` option added to `node -{m,d,n,s}` and `desktop -{m,s}`.
71 - The *subscribe* command now has the following options: `--fifo`, `--count`.
72 - New settings: `ignore_ewmh_fullscreen`, `mapping_events_count`.
73
74 # From 0.9.2 to 0.9.3
75
76 ## Changes
77
78 - *click_to_focus* is now a button name. Specifying a boolean is deprecated but will still work (`true` is equivalent to `button1`).
79
80 ## Additions
81
82 - `node -r` now accepts a relative fraction argument.
83 - An option was added to `query -{M,D,N}` in order to output names instead of IDs: `--names`.
84 - New rule consequence: `rectangle=WxH+X+Y`.
85 - New settings: `swallow_first_click` and `directional_focus_tightness`.
86
87 # From 0.9.1 to 0.9.2
88
89 ## Changes
90
91 - Monitors, desktops and nodes have unique IDs, `bspc query -{N,D,M}` returns IDs and events reference objects by ID instead of name.
92 - `bspc` fails verbosely and only returns a single non-zero exit code.
93 - The `DIR` descriptor is based on [right-window](https://github.com/ntrrgc/right-window).
94 - The `CYCLE_DIR` descriptor isn't limited to the current desktop/monitor anymore. (You can emulate the previous behavior by appending a `.local` modifier to the selector.)
95 - `bspc query -{N,D,M}` accepts an optional reference argument used by certain descriptors/modifiers.
96 - Monitors are ordered visually by default.
97 - The following settings: `border_width`, `window_gap` and `*_padding` behave as expected.
98 - External rules also receives the monitor, desktop and node selectors computed from the built-in rules stage as subsequent arguments.
99 - The `focus_follows_pointer` setting is implemented via enter notify events.
100
101 ## Additions
102
103 - Nodes can be hidden/shown via the new `hidden` flag.
104 - Node receptacles can be inserted with `node -i`. An example is given in `git show e8aa679`.
105 - Non-tiled nodes can be moved/resized via `node -{v,z}`.
106 - The reference of a selector can be set via the `{NODE,DESKTOP,MONITOR}_SEL#` prefix, example: `bspc node 0x0080000c#south -c` will close the node at the south of `0x0080000c`.
107 - Node descriptors: `<node_id>`, `pointed`.
108 - Node modifiers: `hidden`, `descendant_of`, `ancestor_of`, `window`, `active`. Example: `bspc query -N 0x00400006 -n .descendant_of` returns the descendants of `0x00400006`.
109 - Desktop descriptor: `<desktop_id>`.
110 - Monitor descriptor: `<monitor_id>`.
111 - Settings: `pointer_motion_interval`, `pointer_modifier`, `pointer_action{1,2,3}`, `click_to_focus`, `honor_size_hints`.
112 - Event: `pointer_action`.
113 - ICCCM/EWMH atoms: `WM_STATE`, `_NET_WM_STRUT_PARTIAL`.
114 - `bspc` shell completions for `fish`.
115
116 ## Removals
117
118 - The `pointer` domain. Pointer actions are handled internally. You need to remove any binding that uses this domain from your `sxhkdrc`.
119 - Settings: `history_aware_focus`, `focus_by_distance`. Both settings are merged into the new `DIR` implementation.
120 - `monitor -r|--remove-desktops`: use `desktop -r|--remove` instead.
121 - `wm -r|--remove-monitor`: use `monitor -r|--remove` instead.
122
123 # From 0.9 to 0.9.1
124
125 ## Overview
126
127 All the commands that acted on leaves can now be applied on internal nodes (including focusing and preselection). Consequently, the *window* domain is now a *node* domain. Please note that some commands are applied to the leaves of the tree rooted at the selected node and not to the node itself.
128
129 ## Changes
130
131 - All the commands that started with `window` now start with `node`.
132 - `-W|--windows`, `-w|--window`, `-w|--to-window` are now `-N|--nodes`, `-n|--node`, `-n|--to-node`.
133 - We now use cardinal directions: `west,south,north,east` instead of `left,down,up,right` (in fact the latter is just plain wrong: the `up,down` axis is perpendicular to the screen).
134 - The `WINDOW_SEL` becomes `NODE_SEL` and now contains a `PATH` specifier to select internal nodes.
135 - The `control` domain is renamed to `wm`.
136 - `restore -{T,H,S}` was unified into `wm -l|--load-state` and `query -{T,H,S}` into `wm -d|--dump-state`.
137 - `control --subscribe` becomes `subscribe`.
138 - `node --toggle` (previously `window --toggle`) is split into `node --state` and `node --flag`.
139 - The preselection direction (resp. ratio) is now set with `node --presel-dir|-p` (resp. `node --presel-ratio|-o`).
140 - The following desktop commands: `--rotate`, `--flip`, `--balance`, `--equalize`, `--circulate` are now node commands.
141 - `query -T ...` outputs JSON.
142 - `query -{M,D,N}`: the descriptor part of the selector is now optional (e.g.: `query -D -d .urgent`).
143 - Many new modifiers were added, some were renamed. The opposite of a modifier is now expressed with the `!` prefix (e.g.: `like` becomes `same_class`, `unlike` becomes `!same_class`, etc.).
144 - Modifiers can now be applied to any descriptor (e.g.: `query -N -n 0x80000d.floating`).
145 - `wm -l` (previously `restore -T`) will now destroy the existing tree and restore from scratch instead of relying on existing monitors and desktops.
146 - `subscribe` (previously `control --subscribe`) now accepts arguments and can receive numerous events from different domains (see the *EVENTS* section of the manual).
147 - `rule -a`: it is now possible to specify the class name *and* instance name (e.g.: `rule -a Foo:bar`).
148 - `presel_border_color` is now `presel_feedback_color`.
149 - `bspwm -v` yields an accurate version.
150 - The monitors are sorted, by default, according to the natural visual hierarchy.
151
152 ## Additions
153
154 ### Settings
155
156 - `single_monocle`.
157 - `paddingless_monocle`.
158
159 ### Commands
160
161 - `{node,desktop} --activate`.
162 - `node --layer`.
163 - `desktop --bubble`.
164 - `wm {--add-monitor,--remove-monitor}`.
165 - `monitor --rectangle`.
166
167 ## Removals
168
169 ### Commands
170
171 - `desktop --toggle`
172 - `desktop --cancel-presel`
173 - `control --toggle-visibility`.
174
175 ### Settings
176
177 - `apply_floating_atom`.
178 - `auto_alternate`.
179 - `auto_cancel`.
180 - `focused_locked_border_color`
181 - `active_locked_border_color`
182 - `normal_locked_border_color`
183 - `focused_sticky_border_color`
184 - `active_sticky_border_color`
185 - `normal_sticky_border_color`
186 - `focused_private_border_color`
187 - `active_private_border_color`
188 - `normal_private_border_color`
189 - `urgent_border_color`
190
191 ## Message Translation Guide
192
193 0.9                                      | 0.9.1
194 -----------------------------------------|----------------------------------
195 `{left,down,up,right}`                   | `{west,south,north,east}`
196 `window -r`                              | `node -o` (`node -r` also exists)
197 `window -e DIR RATIO`                    | `node @DIR -r RATIO`
198 `window -R DIR DEG`                      | `node @DIR -R DEG`
199 `window -w`                              | `node -n`
200 `desktop DESKTOP_SEL -R DEG`             | `node @DESKTOP_SEL:/ -R DEG`
201 `desktop DESKTOP_SEL -E`                 | `node @DESKTOP_SEL:/ -E`
202 `desktop DESKTOP_SEL -B`                 | `node @DESKTOP_SEL:/ -B`
203 `desktop DESKTOP_SEL -C forward|backward`| `node @DESKTOP_SEL:/ -C forward|backward`
204 `desktop DESKTOP_SEL --cancel-presel`    | `bspc query -N -d DESKTOP_SEL | xargs -I id -n 1 bspc node id -p cancel`
205 `window -t floating`                     | `node -t ~floating`
206 `query -W -w`                            | `query -N -n .leaf`
207 `query -{T,H,S}`                         | `wm -d`
208 `restore -{T,H,S}`                       | `wm -l`