1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00

Update releasenotes.

This commit is contained in:
Qball Cow 2023-10-20 19:44:30 +02:00
parent 9cea843b4d
commit cf8fb53be6

View file

@ -2,18 +2,67 @@
## Recursive file browser
An experimental file browser is introduced in this version. This recursively scans through the
users home directory (this is configurable) to find files.
Its designed to be asynchronous and very fast.
The following settings can be configured:
css
configuration {
recursivebrowser {
/** Directory the file browser starts in. */
directory: "/some/directory";
/** return 1 on cancel. */
cancelreturns1: true;
/** filter entries using regex */
filterregex: "(.*cache.*|.*.o)";
/** command */
command: "xdgopen";
}
}
## Copy to clipboard support
Add support to copy current selected item to clipboard.
The added `control-c` binding copies the current selection to the clipboard.
THIS ONLY WORKS WITH CLIPBOARD MANAGER!!! Once rofi is closes, the data is
gone!
## entry box history
You can now recall and move through previous queries by using
`kb-entry-history-up` or 'kb-entry-history-down` keys. (`Control-Up`,
`Control-Down`).
The following settings can be configured:
css
configuration {
entry {
maxhistory: 30;
}
}
## Fix calc
> NOTE: Slight change in language, this might break theme.
There was a non-parsable grammar in the 'calc' part of the language.
The % operator (modulo) overloaded with percent and could leave to statements
having multiple valid but contradicting interpretations. To resolve this the modulo
operator is now `modulo`. Including in this patch several smaller issues with the
parser where fixed.
## Text outline
## Website
The current documentation is now also available on online at:
[https://davatorium.github.io/rofi/](https://davatorium.github.io/rofi/)
# Thanks to
Big thanks to everybody reporting issues.