| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-11-03 | wiki: Add Since to scroll-button | Ivan Molodetskikh | |
| 2024-11-03 | wiki: Mention insert-hint config on the gestures page | Ivan Molodetskikh | |
| 2024-11-03 | wiki: Add Since to scroll-factor | Ivan Molodetskikh | |
| 2024-11-03 | Implement scroll_factor mouse and touchpad setting (#730) | elipp | |
| * Implement scroll_factor mouse and touchpad setting * Change to FloatOrInt, add docs * Also change v120 values --------- Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com> | |||
| 2024-11-02 | Add Tracy allocation profiling feature flag | Ivan Molodetskikh | |
| 2024-11-02 | Add gradient support for the insert hint | Ivan Molodetskikh | |
| Implement it via FocusRing which already handles SolidColor vs. Border render element. | |||
| 2024-10-29 | [cfg-breaking] Rename hide-on-key-press to hide-when-typing | Ivan Molodetskikh | |
| I originally preferred on-key-press, but when-typing feels more natural and matches sway. This setting had not been in a stable release yet so this is not stable release cfg breaking. | |||
| 2024-10-27 | wiki/Gestures: Add interactive move | Ivan Molodetskikh | |
| 2024-10-27 | wiki: Document insert-hint config | Ivan Molodetskikh | |
| 2024-10-18 | support binding actions to switches (#747) | Christian Meissl | |
| * support spawn action on switch events this adds a new config section named `switch-events` that allows to bind `spawn` action to certain switch toggles. * Expand docs --------- Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com> | |||
| 2024-10-17 | Add scroll-button property for Touchpad, Mouse, Trackpoint, Trackball (#744) | chillinbythetree | |
| 2024-10-13 | Add support for running as a dinit service (#728) | Mark Karlinsky | |
| * Added dinit services * Added dinit support to niri-session * Replaced shutdown script for dinit with a single command execution * Added dinit service files to Getting Started install tables * Fix typo in resources/dinit/niri Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com> * Fixed mistakes in wiki/Getting-Started.md Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com> * niri-session does not start dinit anymore --------- Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com> | |||
| 2024-10-06 | Document the new cursor hide settings | Ivan Molodetskikh | |
| 2024-09-14 | wiki: Update default hotkeys list | Ivan Molodetskikh | |
| 2024-09-14 | wiki: Document always-center-focused-column | Ivan Molodetskikh | |
| 2024-09-13 | wiki: Delete unstable JSON output note | Ivan Molodetskikh | |
| 2024-09-12 | Add preset window heights to wiki & default config | Ivan Molodetskikh | |
| 2024-09-10 | wiki/Xwayland: Add note about existing DISPLAY | Ivan Molodetskikh | |
| 2024-09-04 | wiki/IPC: Link to the online rustdoc | Ivan Molodetskikh | |
| 2024-09-03 | wiki: Add Since note to other open-on-output properties | Ivan Molodetskikh | |
| 2024-09-03 | wiki/Xwayland: Mention adding DISPLAY to config environment | Ivan Molodetskikh | |
| 2024-09-03 | wiki: Update package list | Ivan Molodetskikh | |
| 2024-09-03 | Use libdisplay-info for make/model/serial parsing, implement throughout | Ivan Molodetskikh | |
| 2024-09-02 | Read config from /etc/niri/config.kdl too | Ivan Molodetskikh | |
| 2024-09-02 | wiki: Use $NIRI_SOCKET in example | Ivan Molodetskikh | |
| 2024-09-02 | wiki: Fix niri-ipc links | Ivan Molodetskikh | |
| 2024-09-02 | wiki: Fix code block formatting | Ivan Molodetskikh | |
| 2024-09-02 | wiki: Add the word IPC to the sidebar | Ivan Molodetskikh | |
| 2024-09-01 | wiki: Document IPC programmatic access | Ivan Molodetskikh | |
| 2024-09-01 | Implement the event stream IPC | Ivan Molodetskikh | |
| 2024-08-26 | wiki: Add hotkey overlay skip to FAQ | Ivan Molodetskikh | |
| 2024-08-26 | wiki: Mark FAQ snippet as KDL | Ivan Molodetskikh | |
| 2024-08-23 | wiki: Update transaction list | Ivan Molodetskikh | |
| 2024-08-22 | Implement resize transactions | Ivan Molodetskikh | |
| 2024-08-22 | Implement window resize throttling | Ivan Molodetskikh | |
| 2024-08-22 | feature: add on-demand vrr (#586) | Michael Yang | |
| * feature: add on-demand vrr * Don't require connector::Info in try_to_set_vrr * Improve VRR help message * Rename connector_handle => connector * Fix tracy span name * Move on demand vrr flag set higher * wiki: Mention on-demand VRR --------- Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com> | |||
| 2024-08-14 | wiki: Use real em-dash | Ivan Molodetskikh | |
| 2024-08-14 | wiki: Document invisible state | Ivan Molodetskikh | |
| 2024-08-14 | wiki: Clarify named workspaces example | Ivan Molodetskikh | |
| 2024-08-08 | wiki: Bump xwl-satellite higher up | Ivan Molodetskikh | |
| 2024-08-01 | wiki: Use HTML dark/light image | Ivan Molodetskikh | |
| Apparently GitHub Markdown is not supported on GitHub Wiki. | |||
| 2024-08-01 | wiki: Document the redraw loop | Ivan Molodetskikh | |
| 2024-07-27 | wiki: Fix em-dash | Ivan Molodetskikh | |
| 2024-07-27 | Add profile-with-tracy-ondemand feature | Ivan Molodetskikh | |
| Finally this can be added without disabling frames. manual-lifetime is needed to avoid initializing Tracy for CLI commands, since that is quite slow. | |||
| 2024-07-26 | wiki: Document output background-color | Ivan Molodetskikh | |
| 2024-07-22 | wiki: Mention nightly COPR | Ivan Molodetskikh | |
| 2024-07-22 | wiki: Document negative struts | Ivan Molodetskikh | |
| 2024-07-16 | Implement gradient color interpolation option (#548) | Ivan Molodetskikh | |
| * Added the better color averaging code (tested & functional) * rustfmt * Make Color f32 0..1, clarify premul/unpremul * Fix imports and test name * Premultiply gradient colors matching CSS * Fix indentation * fixup * Add gradient image --------- Co-authored-by: K's Thinkpad <K.T.Kraft@protonmail.com> | |||
| 2024-07-13 | Add middle-emulation libinput flag | Ivan Molodetskikh | |
| 2024-07-08 | wiki: update no-test comments in wiki | Suyashtnt | |
| Signed-off-by: Suyashtnt <suyashtnt@gmail.com> | |||
