mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Add (draft) release notes 1.5.3.
This commit is contained in:
parent
361ce7d6fc
commit
5b2cf7e931
6 changed files with 74 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
v1.5.3: (unreleased)
|
v1.5.3: (unreleased)
|
||||||
|
- Update manpage with missing entry. (#937)
|
||||||
- Rename sidebar widget to mode-switcher and allow configuration from theme.
|
- Rename sidebar widget to mode-switcher and allow configuration from theme.
|
||||||
- Timing: Moving timing output to glib debug system.
|
- Timing: Moving timing output to glib debug system.
|
||||||
- SSH: Fix unitialized variable issue.
|
- SSH: Fix unitialized variable issue.
|
||||||
|
|
73
releasenotes/1.5.3/release-1.5.3.markdown
Normal file
73
releasenotes/1.5.3/release-1.5.3.markdown
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
# 1.5.3: Time delayed progress
|
||||||
|
|
||||||
|
Rofi 1.5.3 is another bug-fix release in the 1.5 series.
|
||||||
|
|
||||||
|
There is one breaking change in the theme naming and there are a few small new features (tweaks) in this release.
|
||||||
|
|
||||||
|
## Sidebar renamed to mode-switcher
|
||||||
|
|
||||||
|
The selection buttons to select between the different modi was still called `sidebar` a remnant from the past.
|
||||||
|
This has now been renamed to `mode-switcher`.
|
||||||
|
|
||||||
|
## Icons in dmenu
|
||||||
|
|
||||||
|
Just like in window,drun and script modi you can add icons to the list in dmenu mode.
|
||||||
|
|
||||||
|
The syntax is similar to the script modi:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
echo -en "Firefox\0icon\x1ffirefox\ngimp\0icon\x1fgimp" | rofi -dmenu -no-config -show-icons
|
||||||
|
```
|
||||||
|
|
||||||
|
![dmenu icons](rofi-dmenu-icons.png)
|
||||||
|
|
||||||
|
|
||||||
|
The entries are separated by a `\n` newline (normal dmenu behaviour).
|
||||||
|
The extra parameters can be added after a `\0` null character, the key and value are separated by a `\x2f` unit
|
||||||
|
separator character.
|
||||||
|
|
||||||
|
|
||||||
|
## Ellipsizing listview entries
|
||||||
|
|
||||||
|
If you have very long entries in your view that get ellipsized (cut off at the end indicated by ...) you can now select,
|
||||||
|
at runtime, where they are cut off (start, middle or end).
|
||||||
|
|
||||||
|
You cycle through the options with the the `alt+.` keybinding.
|
||||||
|
|
||||||
|
Start:
|
||||||
|
|
||||||
|
![dmenu ellipsize](rofi-ellipsize-start.png)
|
||||||
|
|
||||||
|
|
||||||
|
Middle:
|
||||||
|
|
||||||
|
![dmenu ellipsize](rofi-ellipsize-middle.png)
|
||||||
|
|
||||||
|
|
||||||
|
End:
|
||||||
|
|
||||||
|
![dmenu ellipsize](rofi-ellipsize-end.png)
|
||||||
|
|
||||||
|
|
||||||
|
## Full Changelog
|
||||||
|
|
||||||
|
The full list of fixes and updates:
|
||||||
|
|
||||||
|
* Update manpage with missing entry. (#937)
|
||||||
|
* Rename sidebar widget to mode-switcher and allow configuration from theme.
|
||||||
|
* Timing: Moving timing output to glib debug system.
|
||||||
|
* SSH: Fix unitialized variable issue.
|
||||||
|
* SSH: resolve ':' conflict in history entries.
|
||||||
|
* SSH: be case-insensitive when parsing keywords.
|
||||||
|
* RASI Lexer: Fix nested () in variable default field.
|
||||||
|
* USABILITY: When mode not found, show in gui not just on commandline.
|
||||||
|
* ICON: Allow aligning image in icon widget.
|
||||||
|
* Meson build system: cleanups and improvements.
|
||||||
|
* Meson build system: add documentation (#943)
|
||||||
|
* Window: Fix default formatting and remove (invalid) deprecation warning.
|
||||||
|
* DMenu: Add support for showing icons infront of displayed list.
|
||||||
|
* Overlay: Fix overlay widget to correctly integrate in new theme format.
|
||||||
|
* Update libnkutils, libgwater.
|
||||||
|
* DMENU: Add format option to strip pango markup from return value.
|
||||||
|
* ListView: allow user to change ellipsizing displayed value at run-time.
|
||||||
|
|
BIN
releasenotes/1.5.3/rofi-dmenu-icons.png
Normal file
BIN
releasenotes/1.5.3/rofi-dmenu-icons.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7 KiB |
BIN
releasenotes/1.5.3/rofi-ellipsize-end.png
Normal file
BIN
releasenotes/1.5.3/rofi-ellipsize-end.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 47 KiB |
BIN
releasenotes/1.5.3/rofi-ellipsize-middle.png
Normal file
BIN
releasenotes/1.5.3/rofi-ellipsize-middle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
BIN
releasenotes/1.5.3/rofi-ellipsize-start.png
Normal file
BIN
releasenotes/1.5.3/rofi-ellipsize-start.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
Loading…
Reference in a new issue