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