aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-02-18Don't snap after DnD scroll if view position didn't changeIvan Molodetskikh
Otherwise, any DnD breaks temporarily centered columns.
2025-02-18Don't activate window when pressing the Mod+MMB view gestureIvan Molodetskikh
Avoid unnecessary movement.
2025-02-18build(deps): bump clap in the rust-dependencies groupdependabot[bot]
Bumps the rust-dependencies group with 1 update: [clap](https://github.com/clap-rs/clap). Updates `clap` from 4.5.29 to 4.5.30 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.29...clap_complete-v4.5.30) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2025-02-18build(deps): bump ordered-float from 4.6.0 to 5.0.0dependabot[bot]
Bumps [ordered-float](https://github.com/reem/rust-ordered-float) from 4.6.0 to 5.0.0. - [Release notes](https://github.com/reem/rust-ordered-float/releases) - [Commits](https://github.com/reem/rust-ordered-float/compare/v4.6.0...v5.0.0) --- updated-dependencies: - dependency-name: ordered-float dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
2025-02-17Take tab indicators into account in expand-column-to-available-widthIvan Molodetskikh
2025-02-17Use toggle_full_width() for expand-column-to-available-width edge caseIvan Molodetskikh
2025-02-17Fix expand-column-to-available-width for always-centerIvan Molodetskikh
2025-02-17Implement expand-column-to-available-widthIvan Molodetskikh
2025-02-17build(deps): bump pango in the rust-dependencies groupdependabot[bot]
Bumps the rust-dependencies group with 1 update: [pango](https://github.com/gtk-rs/gtk-rs-core). Updates `pango` from 0.20.7 to 0.20.9 - [Release notes](https://github.com/gtk-rs/gtk-rs-core/releases) - [Changelog](https://github.com/gtk-rs/gtk-rs-core/blob/main/CHANGELOG.md) - [Commits](https://github.com/gtk-rs/gtk-rs-core/compare/0.20.7...0.20.9) --- updated-dependencies: - dependency-name: pango dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2025-02-17Make idle notify lazyIvan Molodetskikh
2025-02-17Make pointer inactivity timer reset lazyIvan Molodetskikh
2025-02-16Fix link in Application-Issues.mdDavid
2025-02-16Enable fancy miette errors for the main binaryIvan Molodetskikh
Seems there's not much dependency/binary size impact now, compared to when I first made the KDL config.
2025-02-16Add blank lineIvan Molodetskikh
2025-02-16wiki: Document the DnD edge view scroll gesture and configIvan Molodetskikh
2025-02-16Make DnD edge view scroll configurableIvan Molodetskikh
2025-02-16config: Deindent the snapshotIvan Molodetskikh
2025-02-16config: Convert parse test to a snapshot testIvan Molodetskikh
Updating it by hand got really old tbh
2025-02-16Add a small delay to DnD view scrollingIvan Molodetskikh
2025-02-16layout: Remove unused methodIvan Molodetskikh
2025-02-15Slightly clearer wording in Tabs.mdw-jablonski
2025-02-15Implement scrolling the view during DnDIvan Molodetskikh
DnD is external to the layout, so we just inform it when one is ongoing.
2025-02-15Implement scrolling the view during interactive moveIvan Molodetskikh
2025-02-15Hook up are_transitions_ongoing() for floating and tilesIvan Molodetskikh
Don't spoil it
2025-02-15layout: Check move output in are_animations_ongoing()Ivan Molodetskikh
2025-02-14Implement ext-data-controlIvan Molodetskikh
2025-02-14Update Smithay (idle-notify 2)Ivan Molodetskikh
2025-02-14wiki: Document calibration-matrixIvan Molodetskikh
2025-02-14feat: support for setting tablet calibration matrix; this allows for ↵Ivan Chinenov
rotating tablet inputs (#1122) * feat: support for setting tablet calibration matrix * Change default matrix
2025-02-13build(deps): bump clap in the rust-dependencies groupdependabot[bot]
Bumps the rust-dependencies group with 1 update: [clap](https://github.com/clap-rs/clap). Updates `clap` from 4.5.28 to 4.5.29 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.28...clap_complete-v4.5.29) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2025-02-13Add missing period to doc commentrustN00b
2025-02-13Add missing periods to action doc commentsrustN00b
2025-02-13Implement custom hotkey overlay titlesIvan Molodetskikh
2025-02-13hotkey overlay: Add pretty for spaceIvan Molodetskikh
2025-02-13hotkey overlay: Put Ctrl and Shift before AltIvan Molodetskikh
They are commonly written this way.
2025-02-13animation/spring: Add a check for from = to in duration()Ivan Molodetskikh
The overdamped code below was dividing by zero in this case and triggering a panic.
2025-02-12Parse the config on the file watcher threadIvan Molodetskikh
It takes a while, so let's not block the main thread.
2025-02-12watcher: Allow running a processing function on the threadIvan Molodetskikh
2025-02-12tab indicator: Add corner-radius settingIvan Molodetskikh
2025-02-11wiki: Add Since to drag-lockIvan Molodetskikh
2025-02-11input: Intercept Enter key when confirming the exit dialogIvan Molodetskikh
2025-02-11wiki: Add note that is-window-cast-target doesn't match monitor castsIvan Molodetskikh
2025-02-11wiki: Move sentence to a better spotIvan Molodetskikh
2025-02-11Implement is-window-cast-target window rule matcherIvan Molodetskikh
2025-02-11wiki: Add a page for tabsIvan Molodetskikh
2025-02-10build(deps): bump zbus in the rust-dependencies group across 1 directorydependabot[bot]
Bumps the rust-dependencies group with 1 update in the / directory: [zbus](https://github.com/dbus2/zbus). Updates `zbus` from 5.3.1 to 5.5.0 - [Release notes](https://github.com/dbus2/zbus/releases) - [Commits](https://github.com/dbus2/zbus/compare/zbus-5.3.1...zbus-5.5.0) --- updated-dependencies: - dependency-name: zbus dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2025-02-11wiki: describe running games with gamescope (#1112)Mikołaj Lercher
* wiki: describe running games with gamescope * Update wiki/Application-Issues.md --------- Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com>
2025-02-10tab indicator: Animate openingIvan Molodetskikh
2025-02-10tab indicator: Dim colors when column is inactiveIvan Molodetskikh
2025-02-10Implement MulAssign<f32> for ColorIvan Molodetskikh