Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-04-09 | Remove leftover `renderer` module in `iced_graphics` | 1 | -269/+0 | ||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -1/+1 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 1 | -2/+2 | ||
2024-04-01 | Use generic `Content` in `Text` to avoid reallocation in `fill_text` | 1 | -2/+2 | ||
2024-03-22 | Rename `compositor::Renderer` to `Default` | 1 | -1/+1 | ||
2024-03-22 | Allow custom renderers in `Program` and `Application` | 1 | -0/+8 | ||
2024-03-22 | Fix broken links in documentation | 1 | -12/+0 | ||
2024-03-22 | Restore `canvas::Frame` API | 1 | -1/+2 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -43/+63 | ||
2024-03-21 | Draft support for dynamic custom renderer injection | 1 | -4/+4 | ||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 1 | -9/+9 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -11/+6 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -3/+1 | ||
2024-01-20 | Make `shadow` optional in `renderer::Quad` | 1 | -3/+1 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+3 | ||
2023-12-02 | Rename `viewport` to `clip_bounds` | 1 | -6/+6 | ||
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | 1 | -0/+6 | ||
2023-11-11 | Refactor texture image filtering | 1 | -2/+11 | ||
- Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer` | |||||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -2/+2 | ||
2023-09-12 | Draft `Editor` API and `TextEditor` widget | 1 | -0/+14 | ||
2023-09-11 | Make `FontSystem` global and simplify `Paragraph` API | 1 | -35/+0 | ||
2023-09-09 | Invalidate existing paragraphs when new fonts are loaded | 1 | -0/+23 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -69/+56 | ||
2023-06-29 | Trim text measurements only before `layout` | 1 | -0/+2 | ||
2023-06-29 | Revert "Remove `layout` method from `core::Renderer` trait" | 1 | -1/+12 | ||
This reverts commit 2128472c2a8afcb59927712497c4f613612e9dcc. | |||||
2023-06-29 | Write missing docs in `iced_graphics` and `iced_wgpu` | 1 | -0/+4 | ||
2023-06-29 | Remove `layout` method from `core::Renderer` trait | 1 | -12/+1 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -27/+43 | ||
2023-06-28 | Reuse entries in `text::Cache` in `iced_wgpu` | 1 | -1/+1 | ||
2023-06-20 | Use subpixel glyph positioning and layout linearity | 1 | -19/+9 | ||
... for offsetting and scaling text | |||||
2023-05-11 | Write missing documentation in `iced_graphics` | 1 | -3/+1 | ||
2023-05-04 | Support configurable `LineHeight` in text widgets | 1 | -1/+12 | ||
2023-05-02 | Introduce `text::Shaping` enum and replace magic boolean | 1 | -6/+5 | ||
2023-05-02 | Make basic text shaping the default shaping strategy | 1 | -1/+6 | ||
2023-04-04 | Draft (very) basic incremental rendering for `iced_tiny_skia` | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -10/+10 | ||
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 1 | -4/+4 | ||
Rename `canvas` modules to `geometry` in graphics subcrates | |||||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -20/+23 | ||
2023-02-24 | Introduce `iced_renderer` subcrate featuring runtime renderer fallback | 1 | -2/+5 | ||
2023-02-24 | Implement `font::load` command in `iced_native` | 1 | -0/+5 | ||
2023-02-24 | Overhaul `Font` type to allow font family selection | 1 | -0/+4 | ||
2023-02-17 | Use `f32` for `Padding` | 1 | -2/+1 | ||
2023-02-17 | Use `Pixels` for `Text::size` | 1 | -2/+2 | ||
2023-01-27 | Fix: Clippy lint 'needless_lifetimes' | 1 | -2/+2 | ||
2022-12-06 | Remove `appearance` from `Handle` | 1 | -3/+12 | ||
... and pass it directly to `Renderer::draw` instead. | |||||
2022-11-08 | Rename `QuadBorderRadius` to `BorderRadius` | 1 | -1/+1 | ||
2022-11-05 | Refactor some `image` traits a bit | 1 | -2/+2 | ||
- Use `Size<u32>` were applicable. - Rename `TextureStore` to `image::Storage`. - Rename `TextureStoreEntry` to `image::storage::Entry`. - Wire up `viewport_dimensions` to `iced_glow` for `Svg`. | |||||
2022-11-03 | non uniform border radius for quads | 1 | -1/+1 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -1/+1 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -6/+12 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 |