Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Fix new `clippy` lints | 1 | -5/+5 | ||
2025-02-21 | Update to Rust 2024 and fix compiler errors | 1 | -2/+2 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -10/+3 | ||
2025-02-02 | Refactor and simplify `input_method` API | 1 | -1/+1 | ||
2024-12-07 | Emit pane_grid::DragEvent::Canceled within deadband | 1 | -0/+4 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -2/+2 | ||
2024-11-06 | Fix event capturing order in `pane_grid` | 1 | -38/+41 | ||
2024-11-06 | Rename `Overlay::on_event` to `update` | 1 | -1/+1 | ||
2024-11-05 | Implement `reactive-rendering` for `pane_grid` | 1 | -35/+80 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 1 | -1/+1 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 1 | -26/+23 | ||
2024-10-24 | Rename `state::Widget` to `pane_grid::Memory` | 1 | -10/+15 | ||
2024-10-24 | Remove duplicated `maximized` state in `pane_grid` | 1 | -27/+33 | ||
2024-10-24 | Retain widget state against incoming panes | 1 | -118/+128 | ||
We can associate each state with a `Pane` and compare that against the new panes to remove states w/ respective panes which no longer exist. Because we always increment `Pane`, new states are always added to the end, so this retain + add new state approach will ensure continuity when panes are added & removed | |||||
2024-10-17 | Fix new elided lifetime lint in the `beta` toolchain | 1 | -1/+1 | ||
2024-09-19 | Show `pane_grid` doc example in multiple places | 1 | -14/+64 | ||
2024-09-18 | Bump version to `0.13.0` :tada: | 1 | -1/+1 | ||
2024-08-22 | Add compact variant for pane grid controls | 1 | -0/+2 | ||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 1 | -1/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -1/+1 | ||
2024-03-24 | Use `Catalog` approach for all widgets | 1 | -42/+66 | ||
2024-03-12 | Use closures for `PaneGrid::style` | 1 | -11/+11 | ||
2024-03-08 | fix: make pane_grid appearance items visible to others. | 1 | -3/+3 | ||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -18/+15 | ||
2024-03-07 | Move `Theme` type to `iced_core` | 1 | -4/+2 | ||
2024-03-06 | Use `Style` struct pattern instead of trait for all widgets | 1 | -12/+24 | ||
2024-03-06 | Simplify theming for `PaneGrid` widget | 1 | -551/+522 | ||
2024-03-05 | Simplify theming for `Container` widget | 1 | -5/+4 | ||
2024-02-27 | Fix `PaneGrid` mouse interaction when clicking a pane | 1 | -82/+59 | ||
2024-02-15 | Point doc links to `0.12` branch | 1 | -1/+1 | ||
2024-02-02 | Use `with_translation` wherever possible | 1 | -16/+13 | ||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 1 | -4/+6 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 1 | -1/+2 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -25/+29 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -7/+2 | ||
2024-01-20 | Use `Default` implementation of `renderer::Quad` | 1 | -8/+5 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+3 | ||
2024-01-10 | Introduce useful helpers in `layout` module | 1 | -1/+1 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 1 | -6/+5 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 1 | -6/+3 | ||
2023-12-15 | Add deadband distance before initiating drag action on pane grid | 1 | -18/+51 | ||
2023-09-20 | Fix `clippy::filter_map_next` | 1 | -14/+11 | ||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -2/+2 | ||
2023-09-07 | Host GIFs and video examples in `iced.rs` | 1 | -2/+2 | ||
RIP Gfycat | |||||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 1 | -4/+9 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -3/+10 | ||
2023-07-28 | Bump versions :tada: | 1 | -1/+1 | ||
2023-07-27 | Introduce `visible_bounds` operation for `Container` | 1 | -1/+1 | ||
2023-07-15 | Add viewport to Widget::on_event | 1 | -0/+2 | ||
2023-07-06 | Remove useless conversion in `widget::pane_grid` | 1 | -1/+1 | ||