Skip to content

v0.9.16

Latest

Choose a tag to compare

@BlueManCZ BlueManCZ released this 27 Aug 14:39
9e3fb27

Fixed

  • fullscreen, cyclenext and swapnext keep the mode their Hyprlang arg selects. All three translated to their bare Lua call, so bind = SUPER, F, fullscreen, 1 emitted hl.dsp.window.fullscreen() and the bind toggled full screen instead of maximizing. They now emit mode/action, next/tiled/floating and next/prev respectively, and the reverse reader maps each back to its Hyprlang arg. BlueManCZ/hyprmod#86
    • fullscreen, 2 still emits the plain call: Hyprland has read every mode but 1 as full screen since the fullscreen-state refactor, and the Lua binding rejects a literal "2".
    • swapnext, prev emits { prev = true }, not { next = false } — the Lua binding looks for a truthy next or prev and errors on a table with neither.
    • cyclenext's visible and hist modes are dropped, matching what Hyprland's own legacy translator does with them.