Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-04-13 | Bump versions :tada: | 1 | -2/+2 | ||
2023-03-05 | Rename `iced_native` to `iced_runtime` | 1 | -592/+0 | ||
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. | |||||
2022-08-05 | Lay out `UserInterface` after diffing | 1 | -3/+3 | ||
2022-07-28 | Implement `Widget::operate` for `TextInput` | 1 | -3/+5 | ||
2022-07-28 | Draft widget operations | 1 | -0/+21 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -40/+63 | ||
2022-07-09 | Address Clippy lints | 1 | -1/+1 | ||
2022-07-08 | Add `Style` variant support to `application::StyleSheet` | 1 | -9/+7 | ||
2022-05-30 | Don't process captured overlay statuses | 1 | -0/+4 | ||
2022-05-26 | Rename `theme::Definition` to `application::StyleSheet` | 1 | -3/+6 | ||
2022-05-26 | Let a `Theme` control the `text_color` of an application | 1 | -1/+5 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -2/+5 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-13 | Relayout base layer when layout is invalidated from an overlay | 1 | -22/+45 | ||
2022-04-30 | Fix broken intra-doc links in documentation | 1 | -3/+2 | ||
2022-04-30 | Point repository links to `0.4` branch in documentation | 1 | -1/+1 | ||
2022-03-01 | Fix overlay flickering after `Application::update` | 1 | -20/+26 | ||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -164/+46 | ||
2022-01-22 | Fix previous `overlay` affecting `cursor_position` during `draw` in ↵ | 1 | -2/+4 | ||
`UserInterface` | |||||
2022-01-12 | Write missing docs for `user_interface` module | 1 | -0/+6 | ||
2022-01-11 | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 1 | -22/+26 | ||
2022-01-11 | Invalidate widget tree from `Responsive` widget | 1 | -12/+33 | ||
... by introducing a new `invalidate_widgets` method to `Shell` | |||||
2022-01-03 | Change GitHub namespace to new org for all files | 1 | -1/+1 | ||
2021-11-29 | Introduce `Shell` type in `iced_native` | 1 | -10/+44 | ||
Widgets now can invalidate the current layout of the application on demand. | |||||
2021-11-21 | Fix overflow of graphics primitives in overlays | 1 | -1/+1 | ||
... by using `overlay_bounds` instead of `viewport` as clip bounds for overlay layer in `UserInterface::draw` | |||||
2021-11-02 | Move `viewport` argument to last position in `mouse_interaction` methods | 1 | -2/+2 | ||
This keeps the order of the arguments consistent with `draw`. | |||||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -3/+3 | ||
2021-10-28 | Fix overlay layering in `UserInterface::draw` | 1 | -32/+52 | ||
... by properly implementing the Painter's algorithm. | |||||
2021-10-25 | Implement `Widget::mouse_interaction` for `PaneGrid` | 1 | -13/+9 | ||
... and fix rendering of drag interaction in `PaneGrid` by introducing an explicit `with_translation` method to `Renderer` and simplifying the `with_layer` and `Clip` primitive. | |||||
2021-10-18 | Introduce `mouse_interaction` method to `Widget` trait | 1 | -3/+22 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -3/+4 | ||
2021-10-14 | Implement `Widget::draw` for `Scrollable` | 1 | -9/+13 | ||
Rendering the scroller is still WIP | |||||
2021-10-14 | Implement `Widget::draw` for `Text` | 1 | -0/+3 | ||