Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-03-20 | WIP: background image supportmaster | 1 | -0/+1 | ||
2024-04-30 | Introduce `canvas::Cache` grouping | 1 | -2/+2 | ||
Caches with the same `Group` will share their text atlas! | |||||
2024-04-10 | Reintroduce damage tracking for `iced_tiny_skia` | 1 | -0/+1 | ||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -8/+2 | ||
2024-04-07 | Use built-in `[lints]` table in `Cargo.toml` | 1 | -8/+0 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 1 | -3/+3 | ||
2024-03-24 | Reintroduce backend selection through `ICED_BACKEND` env var | 1 | -1/+1 | ||
2024-03-22 | Allow custom renderers in `Program` and `Application` | 1 | -0/+2 | ||
2024-03-22 | Fix broken links in documentation | 1 | -2/+4 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -2/+2 | ||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 1 | -2/+0 | ||
2024-01-18 | Remove `Compositor` window generic | 1 | -0/+1 | ||
And update `glyphon` and `window_clipboard` | |||||
2023-10-27 | Write documentation for the new text APIs | 1 | -1/+1 | ||
2023-09-20 | Centralize `clippy` lints in `.cargo/config.toml` | 1 | -6/+0 | ||
2023-09-09 | Deny `broken_intradoc_links` and verify documentation in CI | 1 | -2/+3 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -1/+2 | ||
2023-06-29 | Write missing docs in `iced_graphics` and `iced_wgpu` | 1 | -3/+3 | ||
2023-06-29 | Decouple `Mesh` primitives from main `Primitive` type | 1 | -0/+2 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -5/+4 | ||
2023-06-20 | Use subpixel glyph positioning and layout linearity | 1 | -1/+0 | ||
... for offsetting and scaling text | |||||
2023-05-31 | Introduce `web-colors` feature flag to enable sRGB linear blending | 1 | -0/+1 | ||
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-05-19 | Remove `Builder` abstractions for gradients | 1 | -1/+1 | ||
2023-05-11 | Added support for gradients as background variants + other optimizations. | 1 | -0/+2 | ||
2023-05-11 | Enable `doc_auto_cfg` when generating documentation | 1 | -1/+1 | ||
2023-05-11 | Write missing documentation in `iced_graphics` | 1 | -1/+1 | ||
2023-04-27 | Move damage tracking logic to `compositor` in `iced_tiny_skia` | 1 | -0/+1 | ||
2023-03-07 | Remove `image` abstractions in `iced_graphics` | 1 | -1/+3 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -8/+3 | ||
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 1 | -0/+6 | ||
Rename `canvas` modules to `geometry` in graphics subcrates | |||||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -9/+4 | ||
2023-02-24 | Introduce `iced_renderer` subcrate featuring runtime renderer fallback | 1 | -1/+1 | ||
2023-02-24 | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies | 1 | -1/+0 | ||
2022-11-05 | Move image/svg handling into `iced_graphics` | 1 | -0/+1 | ||
The `TextureStore` trait is implemented by the atlas, and can also be implemented in the glow renderer or in a software renderer. The API here may be improved in the future, but API stability is presumably not a huge issue since these types will only be used by renderer backends. | |||||
2022-11-03 | Export `Gradient` in `iced_graphics` root | 1 | -0/+1 | ||
2022-11-03 | Run `cargo fmt` | 1 | -1/+1 | ||
2022-10-05 | Readjusted namespaces, removed Geometry example as it's no longer relevant. | 1 | -1/+0 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -0/+2 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -0/+2 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -3/+0 | ||
2022-07-09 | Fix further `clippy` lints | 1 | -4/+12 | ||
... and explicitly annotate crates as well. | |||||
2022-05-02 | Replace `hecrj` in links with `iced-rs` | 1 | -2/+2 | ||
2022-04-27 | Move `compositor` module access from `window` to `crate` | 1 | -0/+1 | ||
2021-12-09 | Use commit hash in `html_logo_url` | 1 | -1/+1 | ||
2021-12-09 | Added icon in docs | 1 | -0/+3 | ||
2021-11-05 | Write missing documentation in `iced_graphics` | 1 | -1/+1 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -3/+1 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -1/+1 | ||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -2/+2 | ||
2021-08-26 | Rename `HitTestResult` to `Hit` | 1 | -2/+2 | ||
... and also move it to a new `text` module in `iced_core` | |||||
2021-08-21 | Implement textual hit testing | 1 | -2/+2 | ||