Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Increase default `LineHeight` to `Relative(1.3)` | 2023-05-10 | 1 | -1/+1 | |
| | |||||
* | Export `Shaping` and `LineHeight` in `widget::text` | 2023-05-08 | 1 | -12/+11 | |
| | |||||
* | Support configurable `LineHeight` in text widgets | 2023-05-04 | 5 | -5/+104 | |
| | |||||
* | Merge branch 'master' into advanced-text | 2023-05-02 | 1 | -1/+40 | |
|\ | |||||
* | | Introduce `text::Shaping` enum and replace magic boolean | 2023-05-02 | 3 | -26/+36 | |
| | | |||||
* | | Make basic text shaping the default shaping strategy | 2023-05-02 | 3 | -2/+43 | |
| | | |||||
* | | Do not require `Copy` for text `StyleSheet::Style` | 2023-04-28 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For most widgets, `Style` only requires `Default`. A few require `Clone`. Only this one requires `Copy`. Some of the types in the default theme has a custom variant requiring `Box<dyn Trait>`, or `Rc<dyn Trait>` to provide `Clone`, but this isn't possible if `Copy` is required. It would be good to also address the inconsistency of requiring `Clone` in some places and not others. This removes `style/src/text.rs` which is unused in this branch and thus confusing. If there's a reason to keep it, that can be removed from the change. | ||||
* | | Merge branch 'advanced-text' into incremental-rendering | 2023-04-17 | 7 | -8/+92 | |
|\ \ | |||||
| * | | Merge branch 'master' into advanced-text | 2023-04-17 | 7 | -8/+92 | |
| |\| | |||||
| | * | Bump versions :tada: | 2023-04-13 | 3 | -3/+3 | |
| | | | |||||
| | * | Show `NotAllowed` as mouse icon when hovering a disabled `TextInput` | 2023-04-12 | 1 | -0/+1 | |
| | | | |||||
* | | | Implement `PartialEq` and `Eq` for `image::Bytes` | 2023-04-05 | 1 | -29/+9 | |
| | | | |||||
* | | | Group damage regions by area increase | 2023-04-05 | 1 | -0/+14 | |
| | | | |||||
* | | | Draft (very) basic incremental rendering for `iced_tiny_skia` | 2023-04-04 | 3 | -3/+65 | |
|/ / | |||||
* | | Introduce `font::Stretch` | 2023-03-30 | 1 | -0/+19 | |
| | | |||||
* | | Introduce support for `Font` attributes | 2023-03-30 | 2 | -5/+43 | |
| | | |||||
* | | Merge branch 'master' into advanced-text | 2023-03-17 | 1 | -7/+2 | |
|\| | |||||
| * | Fix `clippy` lints for Rust 1.68 | 2023-03-14 | 2 | -14/+4 | |
| | | |||||
* | | Merge branch 'master' into feature/software-renderer | 2023-03-07 | 5 | -73/+15 | |
|\| | |||||
| * | Remove `Fill` variant for `Alignment` | 2023-02-27 | 1 | -3/+0 | |
| | | | | | | | | | | Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options! | ||||
| * | Bump version of `iced_core` :tada: | 2023-02-25 | 1 | -1/+1 | |
| | | |||||
| * | Fix `Padding::fit` on irregular values for an axis | 2023-02-25 | 1 | -4/+6 | |
| | | |||||
* | | Implement `vector` pipeline in `iced_tiny_skia` | 2023-03-07 | 1 | -1/+1 | |
| | | |||||
* | | Converge `Command` types from `iced_futures` and `iced_native` | 2023-03-05 | 1 | -1/+115 | |
| | | |||||
* | | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 36 | -0/+4120 | |
| | | |||||
* | | Implement `Canvas` support for `iced_tiny_skia` | 2023-03-01 | 4 | -0/+232 | |
| | | |||||
* | | Introduce `Weight` enum to `font` | 2023-02-24 | 2 | -1/+17 | |
| | | |||||
* | | Overhaul `Font` type to allow font family selection | 2023-02-24 | 1 | -32/+21 | |
| | | |||||
* | | Implement basic text caching in `iced_wgpu` | 2023-02-24 | 1 | -0/+16 | |
|/ | |||||
* | Bump versions :tada: | 2023-02-18 | 3 | -3/+3 | |
| | |||||
* | Use `f32` for `Padding` | 2023-02-17 | 2 | -22/+55 | |
| | |||||
* | Use `f32` in `Length::Units` and rename it to `Fixed` | 2023-02-17 | 3 | -4/+34 | |
| | |||||
* | Fix layout translation in `overlay::Group` | 2023-01-30 | 1 | -0/+5 | |
| | | | | | This bug produced improper positioning of overlays of elements inside a `Scrollable`. | ||||
* | Bump versions in `README`s | 2023-01-14 | 1 | -1/+1 | |
| | |||||
* | Bump versions :tada: | 2023-01-14 | 2 | -2/+2 | |
| | |||||
* | Use `instant` instead of `wasm-timer` in `iced_core` | 2023-01-12 | 2 | -2/+6 | |
| | |||||
* | Remove `PartialOrd` implementation for `Rectangle` | 2023-01-08 | 1 | -6/+0 | |
| | | | | | A `PartialOrd` implementation is unclear for this type, since it has a position besides its dimensions. | ||||
* | Introduce `RelativeOffset` type in `scrollable` | 2023-01-08 | 1 | -8/+0 | |
| | |||||
* | Reworked Scrollable to account for lack of widget order guarantees. | 2022-12-29 | 2 | -0/+14 | |
| | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds. | ||||
* | Add multidirectional scrolling capabilities to the existing Scrollable. | 2022-12-29 | 1 | -1/+0 | |
| | |||||
* | Fix `clippy` lints for Rust 1.66 | 2022-12-20 | 1 | -2/+2 | |
| | |||||
* | Bump versions :tada: | 2022-12-07 | 2 | -2/+2 | |
| | |||||
* | Remove unnecessary `clippy` directives in `Color` | 2022-12-06 | 1 | -2/+0 | |
| | |||||
* | Fix macro hygiene of `color!` | 2022-12-06 | 1 | -4/+6 | |
| | |||||
* | feat: Add Color::into_rgb8 | 2022-12-06 | 1 | -0/+13 | |
| | |||||
* | Bump versions :tada: | 2022-11-10 | 1 | -1/+1 | |
| | |||||
* | Fix outdated links in documentation | 2022-11-10 | 1 | -1/+1 | |
| | |||||
* | Bump versions :tada: | 2022-11-10 | 1 | -1/+1 | |
| | |||||
* | Remove redundant `std::convert` namespace in `padding` | 2022-11-08 | 1 | -3/+3 | |
| | |||||
* | Cast to `u16` first then divide by `2` in `Padding::fit` | 2022-11-08 | 1 | -4/+4 | |
| |