Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-12 | Simplify `InputMethod` API with only two states | 1 | -1/+1 | ||
Co-authored-by: rhysd <lin90162@yahoo.co.jp> Co-authored-by: KENZ <KENZ.gelsoft@gmail.com> | |||||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -2/+1 | ||
2025-02-02 | Add neutral `None` variant to `InputMethod` | 1 | -1/+1 | ||
2025-02-02 | Refactor and simplify `input_method` API | 1 | -30/+13 | ||
2025-02-02 | Draft `input_method` support | 1 | -2/+12 | ||
2024-11-06 | Rename `Overlay::on_event` to `update` | 1 | -1/+1 | ||
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 | -5/+5 | ||
2024-09-18 | Bump version to `0.13.0` :tada: | 1 | -1/+1 | ||
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-22 | Make `iced_tiny_skia` optional with a `tiny-skia` feature | 1 | -6/+6 | ||
2024-02-15 | Point doc links to `0.12` branch | 1 | -1/+1 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 1 | -29/+33 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -8/+8 | ||
2023-11-21 | Fix `Overlay` composition | 1 | -7/+23 | ||
Translations were not easily composable. | |||||
2023-09-09 | Fix majority of unresolved documentation links | 1 | -2/+2 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 1 | -3/+3 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -6/+11 | ||
2023-08-26 | Fix `clippy` lints for Rust 1.72 | 1 | -1/+1 | ||
2023-07-28 | Bump versions :tada: | 1 | -1/+1 | ||
2023-07-24 | Don't clip raw overlay bounds | 1 | -11/+7 | ||
User interface wraps the overlay in `overlay::Nested`. Clipping here w/ the base Nested overlay always clipped at (0, 0) position instead of the correct position of the child overlay. It's clipped properly already within `Nested::draw`. | |||||
2023-07-15 | Add viewport to Widget::on_event | 1 | -0/+3 | ||
2023-06-29 | Revert "Remove `layout` method from `core::Renderer` trait" | 1 | -7/+6 | ||
This reverts commit 2128472c2a8afcb59927712497c4f613612e9dcc. | |||||
2023-06-29 | Remove `layout` method from `core::Renderer` trait | 1 | -6/+7 | ||
2023-06-14 | Use nested for lazy widgets | 1 | -4/+2 | ||
2023-06-14 | Remove interior mutability | 1 | -18/+19 | ||
Nested doesn't need to implement Overlay trait, it can be be used mutably in user interface so we don't need interior mutability. | |||||
2023-06-14 | Introduce internal `overlay::Nested` for `UserInterface` | 1 | -27/+44 | ||
2023-06-08 | Extend cursor availability to the shell level | 1 | -24/+43 | ||
2023-06-08 | Implement basic cursor availability | 1 | -15/+15 | ||
2023-05-11 | Remove OpenGL mentions in `README`s | 1 | -4/+3 | ||
2023-03-05 | Rename `iced_native` to `iced_runtime` | 1 | -12/+12 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -47/+35 | ||
2023-02-18 | Fix base cursor position during `UserInterface::draw` when overlay is present | 1 | -6/+7 | ||
2023-02-18 | Bump versions :tada: | 1 | -2/+2 | ||
2023-02-11 | fix: panic when overlay event processing removes overlay | 1 | -9/+9 | ||
2023-01-30 | Fix layout translation in `overlay::Group` | 1 | -8/+10 | ||
This bug produced improper positioning of overlays of elements inside a `Scrollable`. | |||||
2023-01-17 | Rename method to is_over | 1 | -5/+3 | ||
2023-01-17 | New method to determine if overlay contains cursor | 1 | -2/+9 | ||
This is needed for "container" overlay's such as `Group` which should only consider it's childrens layouts and not it's own when determining if the cursor is captured by the overlay. | |||||
2023-01-14 | Bump versions :tada: | 1 | -2/+2 | ||
2023-01-12 | Replace `Option<Instant>` with `RedrawRequest` enum | 1 | -13/+10 | ||
2023-01-12 | Draft `Shell:request_redraw` API | 1 | -5/+41 | ||
... and implement `TextInput` cursor blink :tada: | |||||
2022-12-22 | Add `Renderer` argument to `operate` | 1 | -0/+2 | ||
2022-12-07 | Bump versions :tada: | 1 | -2/+2 | ||
2022-11-29 | Get widget operations working w/ overlay | 1 | -7/+12 | ||
2022-11-29 | Allow &mut self in overlay | 1 | -9/+9 | ||
2022-11-14 | Invalidate `overlay` layout when `base` layer captures an `Event` | 1 | -1/+5 | ||
2022-11-11 | #1484, #1527: Fix overlay transition | 1 | -1/+1 | ||
2022-11-10 | Fix outdated links in documentation | 1 | -2/+2 | ||
2022-09-07 | Update docs for renamed integration examples | 1 | -3/+4 | ||
The integration examples were renamed in 77a0b68aa176782e95048795aec15c20a3e60ec6 , this just updates the docs to point to the updates links. |