Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-22 | Add `weakest` and `strongest` to `Background` palette | 1 | -4/+1 | ||
... and tweak background shade generation logic. | |||||
2025-01-24 | Add `warning` style for `progress_bar` | 1 | -0/+7 | ||
2025-01-24 | Implement support for vertical `ProgressBar` | 1 | -25/+62 | ||
Co-authored-by: MG_REX <49415741+ThisIsRex@users.noreply.github.com> | |||||
2024-12-02 | Fix new `clippy` lints | 1 | -2/+2 | ||
2024-10-14 | Add `PartialEq` derives for widget styles | 1 | -1/+1 | ||
2024-09-19 | Show `progress_bar` doc example in multiple places | 1 | -6/+35 | ||
2024-09-10 | Render border above active progress for progress_bar widget. (#2443) | 1 | -2/+6 | ||
* Render border above active progress for progress_bar widget. * Fix gap showing between border and background. * Include border style in active bar and make the border color transparent. | |||||
2024-07-12 | Improve `Border` ergonomics | 1 | -4/+4 | ||
2024-03-24 | Use `Catalog` approach for all widgets | 1 | -39/+64 | ||
2024-03-12 | Use closures for `ProgressBar::style` | 1 | -18/+18 | ||
2024-03-07 | Implement additional helpers for `Border` and `container::Appearance` | 1 | -2/+2 | ||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -17/+14 | ||
2024-03-07 | Move `Theme` type to `iced_core` | 1 | -3/+2 | ||
2024-03-06 | Use `Style` struct pattern instead of trait for all widgets | 1 | -12/+24 | ||
2024-03-05 | Improve default styling of `Slider` widget | 1 | -1/+4 | ||
2024-03-05 | Simplify theming for `ProgressBar` widget | 1 | -23/+85 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -21/+16 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -3/+3 | ||
2024-01-20 | Use `Default` implementation of `renderer::Quad` | 1 | -7/+3 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+2 | ||
2024-01-10 | Introduce useful helpers in `layout` module | 1 | -5/+3 | ||
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 | -5/+5 | ||
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-08 | Implement basic cursor availability | 1 | -4/+3 | ||
2023-05-23 | clippy | 1 | -2/+2 | ||
2023-03-05 | Use `no_run` for widget doc-tests | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -10/+14 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -7/+7 | ||
2022-12-20 | Fix `clippy` lints for Rust 1.66 | 1 | -1/+1 | ||
2022-11-09 | Introduce `Custom` variants for every style in the built-in `Theme` | 1 | -1/+1 | ||
2022-11-03 | non uniform border radius for quads | 1 | -2/+2 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -0/+2 | ||
2022-07-09 | Fix further `clippy` lints | 1 | -1/+1 | ||
... and explicitly annotate crates as well. | |||||
2022-06-01 | Implement theme styling for `ProgressBar` | 1 | -13/+25 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -0/+1 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -12/+2 | ||
2021-11-04 | Rename `fill_rectangle` to `fill_quad` in `Renderer` | 1 | -16/+20 | ||
2021-10-31 | Introduce state lifetime for `style_sheet` in `ProgressBar` | 1 | -7/+8 | ||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -1/+1 | ||
2021-10-28 | Implement `Widget::draw` for `ProgressBar` | 1 | -40/+60 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -4/+4 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -23/+2 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -14/+1 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-10-28 | Introduce `viewport` to `Widget::draw` | 1 | -0/+1 | ||
This should eventually allow us to only generate primitives that are visible. | |||||
2020-07-10 | Remove unnecessary lifetime in `Widget` trait | 1 | -2/+1 | ||
2020-07-08 | Introduce `Widget::overlay` :tada: | 1 | -1/+2 | ||
2020-04-12 | #288 Renamed XXXWidget to Marker | 1 | -2/+2 | ||
2020-04-12 | Remove unnecessary 'static lifetime on Renderer | 1 | -3/+4 | ||