Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | chore: remove once_cell dependency | 2025-01-06 | 1 | -1/+0 | |
| | |||||
* | Implement image support for `canvas` widget | 2024-08-04 | 1 | -0/+1 | |
| | |||||
* | Use built-in `[lints]` table in `Cargo.toml` | 2024-04-07 | 1 | -0/+3 | |
| | |||||
* | Replace `xxhash-rust` with `rustc-hash` | 2024-03-30 | 1 | -1/+0 | |
| | |||||
* | Embed Fira Sans font on Wasm builds by default | 2024-02-20 | 1 | -0/+1 | |
| | |||||
* | Introduce `with_transformation` to `Renderer` trait | 2024-02-02 | 1 | -1/+0 | |
| | |||||
* | Remove `Compositor` window generic | 2024-01-18 | 1 | -0/+1 | |
| | | | | And update `glyphon` and `window_clipboard` | ||||
* | Added support for custom shader widget for iced_wgpu backend. | 2023-11-14 | 1 | -1/+0 | |
| | |||||
* | Migrate twox-hash -> xxhash_rust. Switch to Xxh3 for better performance. | 2023-11-11 | 1 | -5/+1 | |
| | | | | xxhash-rust is more maintained, built against `::core`, so no workaround for wasm is necessary. Switch to Xxh3 for better performance, which shows when loading/hashing image buffers. | ||||
* | Implement `Action::SelectWord` in `text::Editor` | 2023-09-14 | 1 | -0/+1 | |
| | |||||
* | Make `FontSystem` global and simplify `Paragraph` API | 2023-09-11 | 1 | -6/+6 | |
| | |||||
* | Merge branch 'master' into explicit-text-caching | 2023-09-10 | 1 | -48/+38 | |
|\ | |||||
| * | Use workspace dependencies and package inheritance | 2023-09-04 | 1 | -35/+27 | |
| | | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version. | ||||
* | | Remove unused `unicode-segmentation` dependency from `iced_graphics` | 2023-09-09 | 1 | -1/+0 | |
| | | |||||
* | | Implement explicit text caching in the widget state tree | 2023-08-30 | 1 | -0/+11 | |
|/ | |||||
* | Bump versions :tada: | 2023-07-28 | 1 | -2/+2 | |
| | |||||
* | Introduce custom backend-specific primitives | 2023-06-29 | 1 | -4/+0 | |
| | |||||
* | Switched to packing using f16s to maintain acceptable precision. | 2023-06-07 | 1 | -0/+1 | |
| | |||||
* | 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/ | ||||
* | Update `glam` to `0.24` | 2023-05-22 | 1 | -1/+1 | |
| | |||||
* | Update `tiny-skia` and `resvg` | 2023-04-26 | 1 | -1/+1 | |
| | |||||
* | Merge branch 'master' into advanced-text | 2023-04-17 | 1 | -2/+2 | |
|\ | |||||
| * | Bump versions :tada: | 2023-04-13 | 1 | -3/+3 | |
| | | |||||
* | | Remove `image` abstractions in `iced_graphics` | 2023-03-07 | 1 | -21/+2 | |
| | | |||||
* | | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -7/+3 | |
| | | |||||
* | | Move `Canvas` and `QRCode` to `iced` crate | 2023-03-03 | 1 | -1/+5 | |
| | | | | | | | | Rename `canvas` modules to `geometry` in graphics subcrates | ||||
* | | Mark `Primitive` as `non-exhaustive` in `iced_graphics` | 2023-03-03 | 1 | -1/+4 | |
| | | |||||
* | | Implement `Canvas` support for `iced_tiny_skia` | 2023-03-01 | 1 | -11/+2 | |
| | | |||||
* | | Merge branch 'update/svg-deps' into feature/software-renderer | 2023-02-25 | 1 | -10/+2 | |
|\| | |||||
| * | Update `resvg` in `iced_graphics` | 2023-02-25 | 1 | -10/+2 | |
| | | |||||
* | | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies | 2023-02-24 | 1 | -7/+0 | |
|/ | |||||
* | Bump versions :tada: | 2023-02-18 | 1 | -3/+3 | |
| | |||||
* | Bump versions :tada: | 2023-01-14 | 1 | -3/+3 | |
| | |||||
* | Bump versions :tada: | 2022-12-07 | 1 | -2/+2 | |
| | |||||
* | Bump versions :tada: | 2022-11-10 | 1 | -3/+3 | |
| | |||||
* | Update `image` dependency to `0.24` | 2022-11-05 | 1 | -1/+1 | |
| | |||||
* | Move image/svg handling into `iced_graphics` | 2022-11-05 | 1 | -0/+38 | |
| | | | | | | | | | 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. | ||||
* | Merge branch 'master' into fear/linear-gradients | 2022-11-03 | 1 | -1/+1 | |
|\ | |||||
| * | Update `wgpu` to `0.14` and `wgpu_glyph` to `0.18` | 2022-11-01 | 1 | -1/+1 | |
| | | |||||
* | | Adds linear gradient support to 2D meshes in the canvas widget. | 2022-09-29 | 1 | -1/+1 | |
|/ | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -6/+0 | |
| | |||||
* | Update `lyon` to `1.0` :tada: | 2022-07-11 | 1 | -1/+1 | |
| | | | | Congrats and thanks to @nical! | ||||
* | Bump versions :tada: | 2022-07-01 | 1 | -1/+1 | |
| | |||||
* | Bump versions :tada: | 2022-05-02 | 1 | -5/+5 | |
| | |||||
* | Implement `pure` version of `Canvas` widget | 2022-03-09 | 1 | -0/+6 | |
| | |||||
* | Update Rust edition to 2021 :tada: | 2022-02-09 | 1 | -1/+1 | |
| | |||||
* | Bump raw-window-handle | 2022-01-04 | 1 | -1/+1 | |
| | |||||
* | Rely on latest release of `lyon_tessellation` | 2021-09-01 | 1 | -2/+0 | |
| | |||||
* | Rely on new fast paths for basic shapes in `lyon` | 2021-08-30 | 1 | -0/+2 | |
| | | | | | | See [1] for more details. [1]: https://github.com/nical/lyon/pull/696 | ||||
* | Update `lyon` to `0.17` in `iced_graphics` | 2021-08-26 | 1 | -1/+1 | |
| |