Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -2/+2 | ||
2025-01-24 | Add helper functions for alignment to `widget` module | 1 | -4/+4 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -1/+1 | ||
2024-05-13 | Ask for explicit `Length` in `center_*` methods | 1 | -3/+3 | ||
2024-05-03 | Introduce `center` widget helper | 1 | -8/+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-04-05 | Decouple caching from layering and simplify everything | 1 | -1/+1 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 1 | -1/+5 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -1/+3 | ||
2024-03-16 | Remove `sandbox` by making `application` more generic :tada: | 1 | -1/+1 | ||
2024-03-16 | Introduce `Program` API | 1 | -37/+21 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -2/+2 | ||
2024-01-10 | Introduce useful helpers in `layout` module | 1 | -2/+2 | ||
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 | -1/+1 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 1 | -1/+1 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -0/+1 | ||
2023-06-29 | Decouple `Mesh` primitives from main `Primitive` type | 1 | -14/+13 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -4/+3 | ||
2023-06-08 | Take `Rectangle` by value in `Cursor` API | 1 | -1/+1 | ||
2023-06-08 | Implement basic cursor availability | 1 | -19/+21 | ||
2023-05-31 | Introduce `web-colors` feature flag to enable sRGB linear blending | 1 | -9/+10 | ||
This is how browsers perform color management. They treat gamma-corrected sRGB colors as if they were linear RGB. Correctness aside, this mode is introduced for legacy reasons. Most UI/UX tooling uses this color management as well, and many have created an intuition about how color should behave from interacting with a browser. This feature flag should facilitate application development with `iced` in those cases. More details: https://webcolorisstillbroken.com/ | |||||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -27/+11 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -3/+3 | ||
2022-11-28 | Derive `Default` for `Rainbow` in `geometry` example | 1 | -6/+5 | ||
2022-11-28 | Re-introduce the `geometry` example | 1 | -0/+213 | ||
2022-10-05 | Readjusted namespaces, removed Geometry example as it's no longer relevant. | 1 | -222/+0 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -18/+23 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -18/+23 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -31/+26 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -3/+4 | ||
... and check those in CI as well! | |||||
2022-05-14 | Draft first-class `Theme` support | 1 | -5/+6 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -4/+1 | ||
2021-10-30 | Migrate `geometry` example to new `Renderer` API | 1 | -95/+95 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -7/+6 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -91/+92 | ||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -2/+2 | ||
2021-09-20 | Introduce and use `CrossAlign` enum for `Column` and `Row` | 1 | -3/+3 | ||
2020-10-28 | Introduce `viewport` to `Widget::draw` | 1 | -2/+3 | ||
This should eventually allow us to only generate primitives that are visible. | |||||
2020-09-08 | Make `Application` and `Sandbox` return a `Result` | 1 | -1/+1 | ||
2020-07-10 | Remove unnecessary lifetime in `Widget` trait | 1 | -1/+1 | ||
2020-07-08 | Introduce `Widget::overlay` :tada: | 1 | -1/+1 | ||
2020-05-21 | Implement `iced_glutin` :tada: | 1 | -9/+15 | ||
2020-04-30 | Rename `MouseCursor` to `mouse::Interaction` | 1 | -4/+4 | ||
2020-04-29 | Remove `OutOfBounds` variant from `MouseCursor` | 1 | -1/+1 | ||
2020-04-28 | Clip and cull `Mesh2D` primitives in `iced_wgpu` | 1 | -0/+1 | ||
2020-04-28 | Introduce `Translate` primitive in `iced_wgpu` | 1 | -53/+55 | ||
2020-03-07 | Implement `Primitive::Cached` | 1 | -2/+2 | ||
2020-02-14 | Revert changing the constructor and implement new method. | 1 | -1/+1 | ||
2020-02-14 | Fix examples. | 1 | -1/+1 | ||
2020-02-12 | Fix examples using `Mesh2D` | 1 | -60/+63 | ||