-
1.11.1942a33ea · ·
Release 1.11.1 Added ----- * New option `--hide-before-typing` for application launcher mode hides the list until the first character is typed ([#351][351]) Changed ------- * Logging no longer reports "aborted" if dmenu mode is called with no input ([#406][406]). Fixed ----- * Crash when the border size is larger than the border radius ([#401][401]). * Regression: cursor not centered when using a custom line height ([#403][403]). * Regression: selected background not rendered on top of the regular background ([#405][405]). * Regression: Supporting XDG_CUSTOM_HOME as absolute path but not relative should be supported ([#408][408]) [351]: https://codeberg.org/dnkl/fuzzel/issues/351 [401]: https://codeberg.org/dnkl/fuzzel/issues/401 [403]: https://codeberg.org/dnkl/fuzzel/issues/403 [405]: https://codeberg.org/dnkl/fuzzel/issues/405 [406]: https://codeberg.org/dnkl/fuzzel/issues/406 [408]: https://codeberg.org/dnkl/fuzzel/issues/408 Contributors ------------ * @ever * @ingolemo * @otaj * @thoralf * @tranzystorekk * Mark Stosberg
-
1.11.04e54edbe · ·
Release 1.11.0 Added ----- * Nanosvg updated to 93ce879dc4c04a3ef1758428ec80083c38610b1f * New options `--x-margin` `--y-margin` which place the launcher some distance away from the anchor point, in pixels. Default to 0 ([#344][344]). * Support for the `StartupNotify` key in `.desktop` files. * Log output now respects the [`NO_COLOR`](http://no-color.org/) environment variable. * Rounded corners without cairo. With this, the **only** time cairo is needed is when you want to use the librsvg SVG backend. For nanosvg builds, there is no longer any need to link against cairo. * Support for linking against a system provided nanosvg library. See the new `-Dsystem-nanosvg` meson option. Default's to `disabled` (i.e. use the bundled version). * Mouse support. Left click selects/launches, right click quits fuzzel, wheel scrolls (a page at at time). This is, for the time being, not configurable ([#131][131]) * `--cache=PATH` command line option, and `cache` option to `fuzzel.ini`, allowing a custom cache location to be used ([#189][189], [#219][219]). * `expunge` key binding, to remove an entry from the cache. Mapped to shift+delete by default. * `--prompt-color` and `colors.prompt`, controlling the text/foreground color of the prompt ([#365][365]). * `--input-color` and `colors.input`, controlling the text/foreground color of the input string ([#365][365]). * Much improved performance with large amounts of input ([#305][305]). * Improved rendering performance, by using threads. See the new `--render-workers` command line option, and the new `render-workers` option in `fuzzel.ini`. * dmenu mode: `--prompt-only=PROMPT` command line option ([#276][276]). * dmenu mode: start rendering input before STDIN has been closed. * `--match-workers` command line option and the new `match-workers` option in `fuzzel.ini`. * `delayed-filter-ms`, `delayed-filter-limit` options to `fuzzel.ini`, and `--delayed-filter-ms` and `--delayed-filter-limit` command line options. * Match count can now printed at the right-hand side of the input prompt. It is disabled by default, and can be enabled with either the `--counter` command line option, or the `match-counter` setting in `fuzzel.ini`. * `--counter-color` and `colors.counter`, controlling the color of the match count. The default value is `93a1a1ff` (_base1_ in the solarized palette). * The currently selected entry may now be rendered with a bold font. It is disabled by default, and can be enabled either via the new `--use-bold` command line option, or by setting `use-bold=yes`, in `fuzzel.ini`. * `sort-result` option to `fuzzel.ini`, and `--no-sort` command line option. * Placeholder text (for the input box), controlled by the new `--placeholder`, `--placeholder-color` command line options, and the `placeholder` and `colors.placeholder` options in `fuzzel.ini` ([#188][188]). * `--search=TEXT` command line option, allowing you to "pre-filter" the result ([#][274][274]). * Support for pasting text into fuzzel. Both the regular clipboard, and the primary clipboard are supported. See the new `clipboard-paste` and `primary-paste` key bindings ([#200][200]). [344]: https://codeberg.org/dnkl/fuzzel/issues/344 [131]: https://codeberg.org/dnkl/fuzzel/issues/131 [189]: https://codeberg.org/dnkl/fuzzel/issues/189 [219]: https://codeberg.org/dnkl/fuzzel/issues/219 [365]: https://codeberg.org/dnkl/fuzzel/issues/365 [305]: https://codeberg.org/dnkl/fuzzel/issues/305 [276]: https://codeberg.org/dnkl/fuzzel/issues/276 [188]: https://codeberg.org/dnkl/fuzzel/issues/188 [274]: https://codeberg.org/dnkl/fuzzel/issues/274 [200]: https://codeberg.org/dnkl/fuzzel/issues/200 Changed ------- * The cache now stores desktop file **IDs** instead of the application titles. This way, we do not store multiple cache entries with the same value (title) ([#339][339]). * Always fallback on the icon theme `hicolor`. * Quitting without executing an entry in dmenu mode now exits with code 2 instead of 1 ([#353][353]). * The default `layer` is now `overlay` instead of `top`. This means fuzzel now renders on top of fullscreen windows by default ([#81][81]). * `--no-fuzzy` option has been replaced with `--match-mode`. Default match mode is `fzf`. Other options are `fuzzy` and `exact`. See `man fuzzel.ini` for details. ([#305][305]). * Default text color of the prompt and the selected entry to `586e75ff` (_base01_ in the solarized palette). * Initial application sorting is now done case insensitive. * Background is no longer transparent by default. You can change this by setting `colors.background`. * Search string is now font shaped, improving support for e.g Arabic ([#398][398]). [339]: https://codeberg.org/dnkl/fuzzel/issues/339 [81]: https://codeberg.org/dnkl/fuzzel/issues/81 [398]: https://codeberg.org/dnkl/fuzzel/issues/398 Fixed ----- * PNG images being way too dark. * Crash when the cache contains strings that are not valid in the current locale ([#337][337]). * Crash when `tabs` (in `fuzzel.ini`) is set to `0` ([#348][348]). * Crash while loading the cache, when `--list-executables-in-path` is used ([#356][356]) * Rounding of window size when fractional scaling is used. * Dmenu mode failing with _"failed to read from stdin: Resource temporarily unavailable"_. * First frame flickers when fractional scaling is used. * Borders, padding etc not updated on scale changes when `dpi-aware=yes`. This mostly affected setups using fractional scaling, but all setups were affected in one way or another. * Mouse selection not working correctly (wrong item selected) when `dpi-aware=yes` and desktop scaling was enabled. [348]: https://codeberg.org/dnkl/fuzzel/issues/348 [356]: https://codeberg.org/dnkl/fuzzel/issues/356 Contributors ------------ * Aaron Lichtman * alz * Jordi Estrada * Leonardo Hernández Hernández * Mark Stosberg * Ronan Pigott * triallax
-
1.10.2a4964aac · ·
Release 1.10.2 Fixed ----- * Crash when `terminal=yes` (in `fuzzel.ini`), and a `.desktop` file has `Terminal=True` but no `Exec` key ([#331][331]). * `--anchor=center` not working on some compositors ([#330][330]). [331]: https://codeberg.org/dnkl/fuzzel/issues/331 [330]: https://codeberg.org/dnkl/fuzzel/issues/330
-
1.10.1413540aa · ·
Release 1.10.1 Fixed ----- * Crash when executing the command line as is, i.e. when there is no matching entry. * Crash when parsing a `.desktop` file with lines beginning with whitespace ([#328][328], [#329][329]). [328]: https://codeberg.org/dnkl/fuzzel/issues/328 [329]: https://codeberg.org/dnkl/fuzzel/issues/32
-
1.10.0f1a75beb · ·
Release 1.10.0 Added ----- * Support for the `cursor-shape-v1` Wayland protocol. * New option `--anchor` allows setting the window position anchor (i.e. where on the screen the window should generally be positioned), such as `top`, `top-left`, `bottom-right`, `center`, etc. Defaults to `center` ([#130][130]). * `--check-config` command line option ([#264][264]). * New key binding: `execute-input` (mapped to shift+return by default). This key binding executes the raw input as is, regardless of whether it matches anything in the list or not ([#252][252]). * `--select=STRING` command line option. Selects the first entry that matches the given string ([#237][237]). * `include=<path>` option to `fuzzel.ini` ([#205][205]). * New option `--list-executables-in-path` add executables presents in the $PATH variable to the list ([#284][284]). * New key binding: `delete-line-backward` which corresponds to C-u in bash. Also renames `delete-line` to `delete-line-forward` ([#307][307]). * The ID of the selected `.desktop` file, and executed command line are now logged, at info level ([#302][302]). * Support for `wp_fractional_scale_v1` (i.e. true fractional scaling) ([#320][320]). [130]: https://codeberg.org/dnkl/fuzzel/issues/130 [264]: https://codeberg.org/dnkl/fuzzel/issues/264 [252]: https://codeberg.org/dnkl/fuzzel/issues/252 [237]: https://codeberg.org/dnkl/fuzzel/issues/237 [205]: https://codeberg.org/dnkl/fuzzel/issues/205 [284]: https://codeberg.org/dnkl/fuzzel/pulls/284 [307]: https://codeberg.org/dnkl/fuzzel/pulls/307 [302]: https://codeberg.org/dnkl/fuzzel/issues/302 [320]: https://codeberg.org/dnkl/fuzzel/issues/320 Changed ------- * Minimum required version of _wayland-protocols_ is now 1.32 * Selection color is now painted over background color ([#255][255]). * Exact matches (of the application title) are now sorted first ([#259][259]). * Set default log level to warning ([#266][266]). * Rename `delete-line` binding to `delete-line-forward` ([#307][307]). * `password-character` can now be set to the empty string ([#263][263]). [255]: https://codeberg.org/dnkl/fuzzel/issues/255 [259]: https://codeberg.org/dnkl/fuzzel/issues/259 [266]: https://codeberg.org/dnkl/fuzzel/pulls/266 [263]: https://codeberg.org/dnkl/fuzzel/issues/263 Fixed ----- * Ignore whitespace in `.desktop` files’ key and name values ([#248][248]). * Desktop entries with `NoDisplay=true` being ignored unless they also had `Name` and `Exec` set ([#253][253]). * Crash when compositor sends a `keyboard::modifiers` event without first sending a `keyboard::keymap` event (with a valid keymap) ([#293][293]). * Quoted empty (`""`) arguments being ignored ([#285][285]). * Log-level not respected by syslog. [248]: https://codeberg.org/dnkl/fuzzel/issues/248 [253]: https://codeberg.org/dnkl/fuzzel/issues/253 [293]: https://codeberg.org/dnkl/fuzzel/issues/293 [285]: https://codeberg.org/dnkl/fuzzel/issues/285 Contributors ------------ * Alexander Orzechowski * Grzegorz Szymaszek * Gurvan * Jakub Fišer * Mark Stosberg * Mehrad Mahmoudian * otaj * Sertonix * tet * Thomas Voss * Zi How Poh
-
1.9.2f9793b20 · ·
Release 1.9.2 Added ----- * Added a new option `--filter-desktop` which toggles filtering of desktop entries based on the OnlyShowIn and NotShowIn keys. Filtering is based on the value of $XDG\_CURRENT\_DESKTOP according to desktop-entry spec. Filtering is off by default. To disable filtering set in the config from the command line, use --filter-desktop=no Changed ------- * Output scaling is now applied to the border radius ([#236][236]). [236]: https://codeberg.org/dnkl/fuzzel/issues/236 Fixed ----- * Last line sometimes not being rendered ([#234][234]). * `key-bindings.cursor-right-word` not being recognized as a valid action. * `password-character` being set in `fuzzel.ini` incorrectly enabling password mode ([#241][241]). * Added missing zsh+fish completions for `--password`. [234]: https://codeberg.org/dnkl/fuzzel/issues/234 [241]: https://codeberg.org/dnkl/fuzzel/issues/241 Contributors ------------ * complex2liu * Mark Stosberg * Ronan Pigott
-
1.9.1eeb901c7 · ·
Release 1.9.1 Fixed ----- * Regression: default font size was unintentionally changed from 12pt in 1.8.2, to 8pt in 1.9.0. The old default of 12pt has now been restored. * Regression: crash when pressing Enter and the match list is empty (e.g. when trying to execute a command line) ([#222][222]). [222]: https://codeberg.org/dnkl/fuzzel/issues/222
-
1.9.07cb97e5c · ·
Release 1.9.0 Added ----- * Add support for startup notifications via xdg activation ([#195][195]) * Convert tabs to spaces when rendering ([#137][137]). * `--dmenu0` command line option. Like `--dmenu`, but input is NUL separated instead of newline separated ([#197][197]). * Support for localized strings. If you want the old behavior, run `fuzzel` with `LC_MESSAGES=C` ([#199][199]). * Export `FUZZEL_DESKTOP_FILE_ID` environment variable when setting the `--launch-prefix` in order to pass the Desktop File ID to the launch prefix ([#110][110]). * New key bindings: `[key-bindings].first` and `[key-bindings].last`, bound to `Control+Home` and `Control+End` by default ([#210][210]). * New key binding: `[key-bindings].insert-selected`, bound to `Control+Tab` by default. It replaces the current prompt (filter) with the selected item ([#212][212]). [195]: https://codeberg.org/dnkl/fuzzel/pulls/195 [137]: https://codeberg.org/dnkl/fuzzel/issues/137 [197]: https://codeberg.org/dnkl/fuzzel/issues/197 [199]: https://codeberg.org/dnkl/fuzzel/issues/199 [110]: https://codeberg.org/dnkl/fuzzel/issues/110 [210]: https://codeberg.org/dnkl/fuzzel/issues/210 [212]: https://codeberg.org/dnkl/fuzzel/issues/212 Changed ------- * Better verification of color values specified on the command line ([#194][194]). * When determining initial font size, do FontConfig config substitution if the user-provided font pattern has no {pixel}size option ([#1287][foot-1287]). [194]: https://codeberg.org/dnkl/fuzzel/issues/194 [foot-1287]: https://codeberg.org/dnkl/foot/issues/1287 Fixed ----- * Update nanosvg to f0a3e10. Fixes rendering of certain SVG icons ([#190][190]). * Not being able to input numbers using the keypad ([#192][192]). * Absolute path PNG icons not being loaded ([#214][214]). [190]: https://codeberg.org/dnkl/fuzzel/issues/190 [192]: https://codeberg.org/dnkl/fuzzel/issues/192 [214]: https://codeberg.org/dnkl/fuzzel/issues/214 Contributors ------------ * Mark Stosberg * Max Gautier * Ronan Pigott
-
1.8.26158b558 · ·
Release 1.8.2 Added ----- * Fish completions ([#176][176]) [176]: https://codeberg.org/dnkl/fuzzel/issues/176 Fixed ----- * Unsupported icon formats not being skipped when loading application icons. * Wrong size of PNG icons selected ([#182][182]) [182]: https://codeberg.org/dnkl/fuzzel/issues/182
-
1.8.1d10d3d21 · ·
Release 1.8.1 Fixed ----- * Regression: not able to input text with modifiers (e.g. Shift) pressed ([#177][177]). [177]: https://codeberg.org/dnkl/fuzzel/issues/177
-
1.8.0d012346f · ·
Release 1.8.0 Added ----- * Support for file based configuration ([#3][3]). * Customizable key bindings ([#117][117]). * "Custom" key bindings (like Rofi’s `kb-custom-N` key bindings). * If `argv[0]` is _dmenu_, fuzzel now starts in dmenu mode ([#107][107]). * `--password=[CHARACTER]` command line option. Intended to be used with “password input”; all typed text is rendered as _CHARACTER_, defaulting to `*` if _CHARACTER_ is omitted ([#108][108]). * `Ctrl+y` binding to execute selected entry. * `Ctrl+j`/`Ctrl+k` binding to move to the next/previous item ([#120][120]). * Escape sequences in `Exec` arguments are now supported. * Quoted environment variables in `Exec` arguments are now supported ([#143][143]). * Multiple space-separated search words can now be entered at the prompt. * `-M,--selection-match-color`, that lets you configure the color of matched substrings of the currently selected item * New config option `image-size-ratio`, allowing you to control the size of the large image displayed when there are only a “few” matches. * Support for icons in dmenu mode, using Rofi’s extended dmenu protocol ([#166][166]). * `--layer` command line option, allowing you to choose which layer to render the fuzzel window on (`top` or `overlay`) ([#81][81]). * `--no-exit-on-keyboard-focus-loss` command line option (`exit-on-keyboard-focus-loss` config option) ([#128][128]). [3]: https://codeberg.org/dnkl/fuzzel/issues/3 [117]: https://codeberg.org/dnkl/fuzzel/issues/117 [107]: https://codeberg.org/dnkl/fuzzel/issues/107 [108]: https://codeberg.org/dnkl/fuzzel/issues/108 [120]: https://codeberg.org/dnkl/fuzzel/issues/120 [143]: https://codeberg.org/dnkl/fuzzel/issues/143 [166]: https://codeberg.org/dnkl/fuzzel/issues/166 [81]: https://codeberg.org/dnkl/fuzzel/issues/81 [128]: https://codeberg.org/dnkl/fuzzel/issues/128 Changed ------- * `-i` is now **ignored**. This is to increase compatibility with other similar utilities. To set the icon theme, either use the long option (`--icon-theme=THEME`), or set it in the configuration file (default: `$XDG_CONFIG_HOME/fuzzel/fuzzel.ini`) ([#149][149]). * Minimum required meson version is now 0.58. * libpng warnings are now routed through fuzzel’s logging ([#101][101]). * Nanosvg is now the default SVG backend. librsvg is still supported, and can be used by setting the `-Dsvg-backend=librsvg` meson option. * It is no longer necessary to close stdin when using fuzzel in dmenu mode, as long as `--no-run-if-empty` is **not** being used ([#106][106]). * Improved performance of initial rendering of icons ([#124][124]). * `--terminal` now defaults to `$TERMINAL -e`. * Font shaping is now applied to the prompt * The large image displayed when there are only a “few” matches is now smaller by default. * Swapped meaning of the command line options `-p` and `-P`; `-p` is now the short option for `--prompt` ([#146][146]). * Do not add icon-sized padding on the left size in dmenu mode ([#158][158]). * Color config values are now allowed to be prefixed with `#` ([#160][160]). [149]: https://codeberg.org/dnkl/fuzzel/issues/149 [101]: https://codeberg.org/dnkl/fuzzel/issues/101 [106]: https://codeberg.org/dnkl/fuzzel/issues/106 [124]: https://codeberg.org/dnkl/fuzzel/issues/124 [146]: https://codeberg.org/dnkl/fuzzel/issues/146 [158]: https://codeberg.org/dnkl/fuzzel/issues/158 [160]: https://codeberg.org/dnkl/fuzzel/issues/160 Fixed ----- * User `.desktop` entries with `NoDisplay=true` not overriding system entries ([#114][114]). * Icon lookup is now better at following the XDG specification. * Backspace removes not only the previous character, but also everything **after** the cursor. * Crash on exit in dmenu mode when selection list is empty. * Keypad `enter` not executing the selected entry ([#138][138]) [114]: https://codeberg.org/dnkl/fuzzel/issues/114 [138]: https://codeberg.org/dnkl/fuzzel/issues/138 Contributors ------------ * Chinmay Dalal * Matthew Toohey * Michael Yang * Eyeoglu
-
1.7.0a2e023af · ·
Release 1.7.0 Added ----- * `-F,--fields=FIELDS` command line option, allowing you to select which XDG Desktop Entry fields to match against (https://codeberg.org/dnkl/fuzzel/issues/63). * Support for desktop entry actions (https://codeberg.org/dnkl/fuzzel/issues/71). * Fuzzy matching. This is enabled by default, but can be disabled with `--no-fuzzy`. When enabled, the fuzziness can be adjusted with `--fuzzy-max-length-discrepancy` and `--fuzzy-max-distance` (https://codeberg.org/dnkl/fuzzel/issues/56). * `--index` (dmenu mode only): print selected entry’s index instead of its text (https://codeberg.org/dnkl/fuzzel/issues/88). * `--log-level=info|warning|error|none` command line option (https://codeberg.org/dnkl/fuzzel/issues/34). * `--log-no-syslog` command line option. * `--log-colorize=auto|never|always` command line option. Changed ------- * Fuzzel now refuses to start if there is another fuzzel instance running (https://codeberg.org/dnkl/fuzzel/issues/57). * Treat "Apps" as valid context for applications to support more icon themes (for example, Faenza) * The `Name` entry of the desktop files are no longer used as unique identifiers. Instead, we now generate the “desktop file ID” according to the XDG desktop entry specification, and use that as ID (https://codeberg.org/dnkl/fuzzel/issues/68). * All XDG data directories are now searched when loading an icon. Previously, only XDG data directories where the theme directory contained an `index.theme` file were searched (https://codeberg.org/dnkl/fuzzel/issues/62). * Pressing Tab when there is a single match now executes it (https://codeberg.org/dnkl/fuzzel/issues/77). * Use a lock file instead of parsing `/proc` to prevent multiple fuzzel instances from running at the same time (https://codeberg.org/dnkl/fuzzel/issues/84). * The application list is now populated in a separate thread, in parallel to initializing the GUI. This reduces the risk of missing keyboard input (https://codeberg.org/dnkl/fuzzel/issues/82). * Icons are now loaded in a thread. This allows us to display the application list quickly (initially without icons, if loading them takes “too” long). * Fuzzel now exits with exit code 0 when the non-dmenu launcher is aborted (no application has been launched) by the user (https://codeberg.org/dnkl/fuzzel/issues/98). Fixed ----- * Long entries overrunning the right side padding (https://codeberg.org/dnkl/fuzzel/issues/80). * Tab and Shift+Tab not wrapping around (https://codeberg.org/dnkl/fuzzel/issues/78). * Visual glitches in the corners, when using rounded corners (https://codeberg.org/dnkl/fuzzel/issues/90). * Regression: `--dmenu --lines=0` crashing (https://codeberg.org/dnkl/fuzzel/issues/92). Contributors ------------ * yangyingchao * ReplayCoding
-
1.6.5ba5399e5 · ·
Release 1.6.5 Added ----- * `--dpi-aware=no|yes|auto` command line option. * Multi-page view (https://codeberg.org/dnkl/fuzzel/issues/42). Removed ------- * Misleading error message about a non-existing cache file (https://codeberg.org/dnkl/fuzzel/issues/59). Fixed ----- * Window quickly resized when launched (https://codeberg.org/dnkl/fuzzel/issues/21). * Layer surface being committed before configure event has been ack:ed.
-
1.6.44df215b9 · ·
Release 1.6.4 Added ----- * Support for [nanosvg](https://github.com/memononen/nanosvg) as an alternative SVG backend. Nanosvg is bundled with fuzzel and has **no** additional dependencies. This means you can now have SVGs without depending on Cairo. Changed ------- * Meson option `-Denable-png` replaced with `-Dpng-backend=none|libpng`. * Meson option `-Denable-svg` replaced with `-Dsvg-backend=none|librsvg|nanosvg`. Fixed ----- * Graphical corruption triggered by the “gerbview” SVG icon, from KiCAD (https://codeberg.org/dnkl/fuzzel/issues/47). * SVG icons containing multiple icons not being limited to the main icon (https://codeberg.org/dnkl/fuzzel/issues/48).
-
1.6.3ef8fa66a · ·
Release 1.6.3 Added ----- * `-P,--prompt` command line option, allowing you to set a custom prompt. Changed ------- * `-f,--font` now supports explicit font fallbacks. Fixed ----- * Removed usage of deprecated function `rsvg_handle_get_dimensions()` when building against recent versions of librsvg (https://codeberg.org/dnkl/fuzzel/issues/45). Contributors ------------ * [bapt](https://codeberg.org/bapt)
-
1.6.257045582 · ·
Release 1.6.2 Added ----- * `-s,--selection-text-color` command line option, that lets you configure the foreground/text color of the currently selected item (https://codeberg.org/dnkl/fuzzel/issues/37). Changed ------- * Use `rsvg_handle_render_document()` instead of `rsvg_handle_render_cairo()` on libsrvg >= 2.46, since the latter has been deprecated (https://codeberg.org/dnkl/fuzzel/issues/32). Fixed ----- * Icons not being searched for in all icon theme instances * Crash when XKB compose file is missing (https://codeberg.org/dnkl/fuzzel/issues/35).
-
1.6.115d3b9ad · ·
Release 1.6.1 Fixed ----- * Wrong font being used for some entries if guessing monitor fuzzel will appear on, and guessing wrong (https://codeberg.org/dnkl/fuzzel/issues/31).
-
1.6.0704c8693 · ·
Release 1.6.0 Added ----- * Text shaping support (https://codeberg.org/dnkl/fuzzel/issues/20). * Option for vertical padding between prompt and match list. Changed ------- * fcft >= 2.4.0 is now required. * In dmenu mode, fuzzel now prints the keyboard input as is, if it does not match any of the items (https://codeberg.org/dnkl/fuzzel/issues/23). * The `.desktop` filename is now also matched against (https://codeberg.org/dnkl/fuzzel/issues/25). Fixed ----- * Set initial subpixel mode correctly when there is only one monitor. * Crash when `~/.cache/fuzzel` contained invalid/corrupt entries. Contributors ------------ * [loserMcloser](https://codeberg.org/loserMcloser)
-
-
1.5.312dcac2a · ·
Release 1.5.3 Fixed ----- * Compilation when both PNGs and SVGs have been disabled.