diff --git a/releasenotes/1.7.6/release-1.7.6.markdown b/releasenotes/1.7.6/release-1.7.6.markdown index d4aa24f3..93e5c1fc 100644 --- a/releasenotes/1.7.6/release-1.7.6.markdown +++ b/releasenotes/1.7.6/release-1.7.6.markdown @@ -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. */ + cancel‐returns‐1: true; + /** filter entries using regex */ + filter‐regex: "(.*cache.*|.*.o)"; + /** command */ + command: "xdg‐open"; + } +} +‘‘‘ + + ## 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 { + max‐history: 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.