]> git.lizzy.rs Git - bspwm.git/blob - doc/CHANGELOG.md
Update CONTRIBUTING.md
[bspwm.git] / doc / CHANGELOG.md
1 # From 0.9.2 to 0.9.3
2
3 ## Changes
4
5 - *click_to_focus* is now a button name. Specifying a boolean is deprecated but will still work (`true` is equivalent to `button1`).
6
7 ## Additions
8
9 - `node -r` now accepts a relative fraction argument.
10 - An option was added to `query -{M,D,N}` in order to output names instead of IDs: `--names`.
11 - New rule consequence: `rectangle=WxH+X+Y`.
12 - New settings: `swallow_first_click` and `directional_focus_tightness`.
13
14 # From 0.9.1 to 0.9.2
15
16 ## Changes
17
18 - Monitors, desktops and nodes have unique IDs, `bspc query -{N,D,M}` returns IDs and events reference objects by ID instead of name.
19 - `bspc` fails verbosely and only returns a single non-zero exit code.
20 - The `DIR` descriptor is based on [right-window](https://github.com/ntrrgc/right-window).
21 - 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.)
22 - `bspc query -{N,D,M}` accepts an optional reference argument used by certain descriptors/modifiers.
23 - Monitors are ordered visually by default.
24 - The following settings: `border_width`, `window_gap` and `*_padding` behave as expected.
25 - External rules also receives the monitor, desktop and node selectors computed from the built-in rules stage as subsequent arguments.
26 - The `focus_follows_pointer` setting is implemented via enter notify events.
27
28 ## Additions
29
30 - Nodes can be hidden/shown via the new `hidden` flag.
31 - Node receptacles can be inserted with `node -i`. An example is given in `git show e8aa679`.
32 - Non-tiled nodes can be moved/resized via `node -{v,z}`.
33 - 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`.
34 - Node descriptors: `<node_id>`, `pointed`.
35 - Node modifiers: `hidden`, `descendant_of`, `ancestor_of`, `window`, `active`. Example: `bspc query -N 0x00400006 -n .descendant_of` returns the descendants of `0x00400006`.
36 - Desktop descriptor: `<desktop_id>`.
37 - Monitor descriptor: `<monitor_id>`.
38 - Settings: `pointer_motion_interval`, `pointer_modifier`, `pointer_action{1,2,3}`, `click_to_focus`, `honor_size_hints`.
39 - Event: `pointer_action`.
40 - ICCCM/EWMH atoms: `WM_STATE`, `_NET_WM_STRUT_PARTIAL`.
41 - `bspc` shell completions for `fish`.
42
43 ## Removals
44
45 - The `pointer` domain. Pointer actions are handled internally. You need to remove any binding that uses this domain from your `sxhkdrc`.
46 - Settings: `history_aware_focus`, `focus_by_distance`. Both settings are merged into the new `DIR` implementation.
47 - `monitor -r|--remove-desktops`: use `desktop -r|--remove` instead.
48 - `wm -r|--remove-monitor`: use `monitor -r|--remove` instead.
49
50 # From 0.9 to 0.9.1
51
52 ## Overview
53
54 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.
55
56 ## Changes
57
58 - All the commands that started with `window` now start with `node`.
59 - `-W|--windows`, `-w|--window`, `-w|--to-window` are now `-N|--nodes`, `-n|--node`, `-n|--to-node`.
60 - 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).
61 - The `WINDOW_SEL` becomes `NODE_SEL` and now contains a `PATH` specifier to select internal nodes.
62 - The `control` domain is renamed to `wm`.
63 - `restore -{T,H,S}` was unified into `wm -l|--load-state` and `query -{T,H,S}` into `wm -d|--dump-state`.
64 - `control --subscribe` becomes `subscribe`.
65 - `node --toggle` (previously `window --toggle`) is split into `node --state` and `node --flag`.
66 - The preselection direction (resp. ratio) is now set with `node --presel-dir|-p` (resp. `node --presel-ratio|-o`).
67 - The following desktop commands: `--rotate`, `--flip`, `--balance`, `--equalize`, `--circulate` are now node commands.
68 - `query -T ...` outputs JSON.
69 - `query -{M,D,N}`: the descriptor part of the selector is now optional (e.g.: `query -D -d .urgent`).
70 - 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.).
71 - Modifiers can now be applied to any descriptor (e.g.: `query -N -n 0x80000d.floating`).
72 - `wm -l` (previously `restore -T`) will now destroy the existing tree and restore from scratch instead of relying on existing monitors and desktops.
73 - `subscribe` (previously `control --subscribe`) now accepts arguments and can receive numerous events from different domains (see the *EVENTS* section of the manual).
74 - `rule -a`: it is now possible to specify the class name *and* instance name (e.g.: `rule -a Foo:bar`).
75 - `presel_border_color` is now `presel_feedback_color`.
76 - `bspwm -v` yields an accurate version.
77 - The monitors are sorted, by default, according to the natural visual hierarchy.
78
79 ## Additions
80
81 ### Settings
82
83 - `single_monocle`.
84 - `paddingless_monocle`.
85
86 ### Commands
87
88 - `{node,desktop} --activate`.
89 - `node --layer`.
90 - `desktop --bubble`.
91 - `wm {--add-monitor,--remove-monitor}`.
92 - `monitor --rectangle`.
93
94 ## Removals
95
96 ### Commands
97
98 - `desktop --toggle`
99 - `desktop --cancel-presel`
100 - `control --toggle-visibility`.
101
102 ### Settings
103
104 - `apply_floating_atom`.
105 - `auto_alternate`.
106 - `auto_cancel`.
107 - `focused_locked_border_color`
108 - `active_locked_border_color`
109 - `normal_locked_border_color`
110 - `focused_sticky_border_color`
111 - `active_sticky_border_color`
112 - `normal_sticky_border_color`
113 - `focused_private_border_color`
114 - `active_private_border_color`
115 - `normal_private_border_color`
116 - `urgent_border_color`
117
118 ## Message Translation Guide
119
120 0.9                                      | 0.9.1
121 -----------------------------------------|----------------------------------
122 `{left,down,up,right}`                   | `{west,south,north,east}`
123 `window -r`                              | `node -o` (`node -r` also exists)
124 `window -e DIR RATIO`                    | `node @DIR -r RATIO`
125 `window -R DIR DEG`                      | `node @DIR -R DEG`
126 `window -w`                              | `node -n`
127 `desktop DESKTOP_SEL -R DEG`             | `node @DESKTOP_SEL:/ -R DEG`
128 `desktop DESKTOP_SEL -E`                 | `node @DESKTOP_SEL:/ -E`
129 `desktop DESKTOP_SEL -B`                 | `node @DESKTOP_SEL:/ -B`
130 `desktop DESKTOP_SEL -C forward|backward`| `node @DESKTOP_SEL:/ -C forward|backward`
131 `desktop DESKTOP_SEL --cancel-presel`    | `bspc query -N -d DESKTOP_SEL | xargs -I id -n 1 bspc node id -p cancel`
132 `window -t floating`                     | `node -t ~floating`
133 `query -W -w`                            | `query -N -n .leaf`
134 `query -{T,H,S}`                         | `wm -d`
135 `restore -{T,H,S}`                       | `wm -l`