Releases: leftwm/leftwm-layouts
Releases · leftwm/leftwm-layouts
0.9.1
✨ Features
- Implement
FromStr
forDirection
(via #27 by @marianomarciello) - Add
Serialize
andDeserialize
traits toDirection
(via #26 by @marianomarciello)
0.9.0
✨ Features
- Add functions (
Direction::find_neighbor()
) to find directional neighbours onRect
(via #22 by @marianomarciello)
0.8.4
0.8.3
0.8.2
0.8.1
🐞 Fixes
- Fix issue where column rotation was not properly applied if only the
main
orstack
column was present
0.8.0
💥 Breaking Changes
- Method
Layout::set_main_size(&mut self, px: i32)
was removed, useset_main_size(&mut self, size: Size)
instead
✨ Features
- Add
Layout::main_size() -> Option<Size>
shorthand method - Add
Layout::main_window_count() -> Option<usize>
shorthand method - Add
Layout::set_main_size(&mut self, size: Size)
to set main size to specific size - Add
Layout::change_main_size(&mut self, delta: i32, upper_bound: i32)
to change size by delta - Improve documentation in source code
- Add more tests