Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -204/+0 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -5/+5 | ||
2023-01-28 | Refactor image draw to standalone function | 1 | -28/+40 | ||
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-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -0/+7 | ||
2022-06-07 | Remove unused code warnings | 1 | -1/+1 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -0/+1 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -12/+1 | ||
2022-02-16 | Hash `content_fit` in `hash_layout` of `Image` and `Svg` | 1 | -0/+1 | ||
2022-02-16 | Remove redundant `layout.bounds()` calls in `Image` and `Svg` | 1 | -6/+5 | ||
2022-02-16 | Add `ContentFit` support to `Svg` widget | 1 | -1/+0 | ||
2022-02-16 | Center `Image` inside available bounds when possible | 1 | -9/+14 | ||
2022-02-16 | Rename `Image::fit` to `content_fit` | 1 | -6/+10 | ||
... just for consistency! | |||||
2022-02-16 | Make documentation of `Image::fit` consistent | 1 | -1/+1 | ||
2022-02-16 | Use a new clipping layer only when necessary in `Image::draw` | 1 | -2/+11 | ||
2022-02-16 | Add support for `ContentFit` for `Image` | 1 | -16/+50 | ||
2022-02-13 | Implement `Image` in `iced_pure` | 1 | -24/+49 | ||
2022-01-03 | Change GitHub namespace to new org for all files | 1 | -1/+1 | ||
2021-12-10 | Decouple the image Handle type from the iced_native implementation | 1 | -9/+13 | ||
2021-10-31 | Introduce first-class `image` module in `iced_native` | 1 | -127/+4 | ||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -1/+1 | ||
2021-10-28 | Implement `Widget::draw` for `image::Viewer` | 1 | -2/+2 | ||
2021-10-25 | Implement `Widget::draw` for `Image` | 1 | -1/+4 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -1/+2 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -5/+2 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -26/+1 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-10-28 | Introduce `viewport` to `Widget::draw` | 1 | -1/+3 | ||
This should eventually allow us to only generate primitives that are visible. | |||||
2020-07-10 | Remove unnecessary lifetime in `Widget` trait | 1 | -1/+1 | ||
2020-07-08 | Introduce `Widget::overlay` :tada: | 1 | -1/+1 | ||
2020-05-27 | remove re-export on viewer::State | 1 | -1/+1 | ||
2020-05-26 | rename to image::Viewer | 1 | -0/+3 | ||
2020-04-26 | document that img handle constructors guess fmt | 1 | -0/+4 | ||
This patch documents the fact that a couple of the image handle constructors know how to guess the image format based on the data that they are provided. I had to dig through `iced` sources until I discovered that those routines ultimately boil down to stuff like [image::load_from_memory][1] from the `image` crate, so I thought I would save others the trouble of doing the same reverse-engineering [1]: https://docs.rs/image/0.23.4/image/fn.load_from_memory.html | |||||
2020-04-12 | #288 Renamed XXXWidget to Marker | 1 | -1/+2 | ||
2020-03-31 | Genericize `From` implementation for `image::Handle` | 1 | -9/+6 | ||
2020-03-30 | Hash type ids in `Widget::hash_layout` impls | 1 | -0/+2 | ||
2020-03-20 | Remove excess whitespace from end of line to comply with `cargo fmt`. | 1 | -1/+1 | ||
2020-03-06 | Remove counterintuitive constant functions | 1 | -2/+2 | ||
2020-03-01 | Note BGRA requirement in Handle::from_pixels docs | 1 | -1/+3 | ||
2020-02-29 | Add support for loading already-decoded image pixels | 1 | -0/+26 | ||
2020-02-25 | Implemented a texture atlas for images and svgs. | 1 | -1/+1 | ||
2020-02-14 | Revert changing the constructor and implement new method. | 1 | -1/+1 | ||
2020-02-14 | Add `bound` to `Node` constructor. | 1 | -1/+1 | ||
2020-02-05 | Add `Handle` and `Data` to `image` in `iced_web` | 1 | -1/+0 | ||
2019-12-30 | Add `Renderer::Defaults` and style inheritance | 1 | -0/+1 | ||
2019-12-04 | Update `Image::hash_layout` to hash new `Handle` | 1 | -1/+7 | ||
2019-12-04 | Rename `image::Handle::from_bytes` to `from_memory` | 1 | -1/+4 | ||
Also, replace `image` example with a new `pokedex` example using the PokéAPI. | |||||
2019-12-01 | Added path to image hash so it updates when path changes | 1 | -0/+1 | ||
2019-11-30 | Fix typo in `image::Handle` docs | 1 | -1/+1 | ||
2019-11-29 | Make many functions `const` | 1 | -2/+2 | ||
The point is to set up repeated components or boilerplate before their use sites. The majority of these make sense as `const`. However, some functions such as those regarding state may not make sense as `const`. | |||||
2019-11-30 | Implement `image` viewer example | 1 | -16/+23 | ||