Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -1/+1 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 2 | -4/+4 | ||
2025-01-06 | Fix consistency of import ordering | 1 | -2/+2 | ||
2025-01-06 | chore: remove once_cell dependency | 1 | -7/+8 | ||
2024-12-02 | Fix new `clippy` lints | 2 | -2/+2 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 2 | -2/+2 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2 | -8/+2 | ||
2024-11-05 | Split `Shell::request_redraw` into two different methods | 2 | -4/+4 | ||
2024-09-29 | fix: circular progress no longer skips | 1 | -2/+2 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -3/+3 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -2/+2 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -1/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -4/+1 | ||
2024-06-10 | Introduce `window::Id` to `Event` subscriptions | 2 | -2/+2 | ||
And remove `window::Id` from `Event` altogether. | |||||
2024-05-03 | Introduce `center` widget helper | 1 | -7/+3 | ||
... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result. | |||||
2024-03-22 | Make `iced_tiny_skia` optional with a `tiny-skia` feature | 1 | -1/+3 | ||
2024-03-22 | Restore `canvas::Frame` API | 1 | -1/+1 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -4/+2 | ||
2024-03-18 | refactor: replace `text(format!(` with `text` macro | 1 | -1/+1 | ||
2024-03-17 | Move `Program` to `application` module | 1 | -1/+1 | ||
2024-03-17 | Remove `Sandbox` trait :tada: | 1 | -1/+1 | ||
2024-03-16 | Remove `sandbox` by making `application` more generic :tada: | 1 | -1/+1 | ||
2024-03-16 | Make `sandbox` helper take a `title` as well | 1 | -4/+7 | ||
2024-03-16 | Introduce `Program` API | 1 | -31/+15 | ||
2024-01-31 | Improve `Radians` ergonomics | 1 | -5/+5 | ||
2024-01-31 | Use `Radians` in arc and ellipse types | 1 | -8/+9 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 2 | -33/+31 | ||
2024-01-20 | Use `Default` implementation of `renderer::Quad` | 1 | -13/+4 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+3 | ||
2024-01-10 | Introduce useful helpers in `layout` module | 2 | -8/+2 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 2 | -12/+10 | ||
2024-01-10 | Introduce `Widget::size_hint` and fix further layout inconsistencies | 1 | -6/+5 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 2 | -2/+2 | ||
2023-12-20 | Stop polling in event loop on `RedrawRequest::NextFrame` | 2 | -10/+2 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 2 | -2/+2 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 2 | -0/+2 | ||
2023-07-21 | refactored window storage; | 2 | -2/+2 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-07-15 | Add viewport to Widget::on_event | 2 | -0/+2 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -1/+3 | ||
2023-06-28 | Fix `loading_spinners` example | 2 | -8/+10 | ||
2023-06-09 | refactor: remove unnecessary canvas complexity | 1 | -120/+67 | ||
2023-06-08 | comment: fix typo | 1 | -4/+4 | ||
2023-06-08 | fix: RedrawRequest::NextFrame -> RedrawRequest::At() | 2 | -2/+10 | ||
2023-06-08 | comment: cleanup imports | 3 | -60/+56 | ||
2023-06-07 | fix: rotation in terms of duration | 1 | -29/+54 | ||
2023-06-07 | feat: use lyon for easing | 4 | -0/+1018 | ||