Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | document that img handle constructors guess fmt | 2020-04-26 | 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 | ||||
* | #288 Renamed XXXWidget to Marker | 2020-04-12 | 1 | -1/+2 | |
| | |||||
* | Genericize `From` implementation for `image::Handle` | 2020-03-31 | 1 | -9/+6 | |
| | |||||
* | Hash type ids in `Widget::hash_layout` impls | 2020-03-30 | 1 | -0/+2 | |
| | |||||
* | Remove excess whitespace from end of line to comply with `cargo fmt`. | 2020-03-20 | 1 | -1/+1 | |
| | |||||
* | Note BGRA requirement in Handle::from_pixels docs | 2020-03-01 | 1 | -1/+3 | |
| | |||||
* | Add support for loading already-decoded image pixels | 2020-02-29 | 1 | -0/+26 | |
| | |||||
* | Implemented a texture atlas for images and svgs. | 2020-02-25 | 1 | -1/+1 | |
| | |||||
* | Add `Handle` and `Data` to `image` in `iced_web` | 2020-02-05 | 1 | -1/+0 | |
| | |||||
* | Add `Renderer::Defaults` and style inheritance | 2019-12-30 | 1 | -0/+1 | |
| | |||||
* | Update `Image::hash_layout` to hash new `Handle` | 2019-12-04 | 1 | -1/+7 | |
| | |||||
* | Merge branch 'master' into feature/image-from-bytes | 2019-12-04 | 1 | -0/+1 | |
|\ | |||||
| * | Added path to image hash so it updates when path changes | 2019-12-01 | 1 | -0/+1 | |
| | | |||||
* | | Rename `image::Handle::from_bytes` to `from_memory` | 2019-12-04 | 1 | -1/+4 | |
| | | | | | | | | | | Also, replace `image` example with a new `pokedex` example using the PokéAPI. | ||||
* | | Fix typo in `image::Handle` docs | 2019-11-30 | 1 | -1/+1 | |
| | | |||||
* | | Implement `image` viewer example | 2019-11-30 | 1 | -16/+23 | |
| | | |||||
* | | Allow to load an image from memory | 2019-11-29 | 1 | -8/+85 | |
|/ | | | | | New `image::Handle` opaque type uniquely identifying some `image::Data`, allowing reliable caching. | ||||
* | Fix `iced_native` widget examples | 2019-11-24 | 1 | -11/+8 | |
| | |||||
* | Write docs for `iced` and `iced_native` | 2019-11-22 | 1 | -0/+3 | |
| | |||||
* | Merge branch 'master' into improvement/docs | 2019-11-21 | 1 | -0/+8 | |
|\ | |||||
| * | Make `width` and `height` required methods | 2019-11-16 | 1 | -1/+9 | |
| | | |||||
* | | Move widgets from `core` to `native` and `web` | 2019-11-21 | 1 | -10/+71 | |
|/ | | | | Also made fields private and improved `Renderer` traits. | ||||
* | Implement `Container` widget | 2019-11-11 | 1 | -1/+0 | |
| | | | | Remove `align_self` and `justify_content` methods | ||||
* | Draft custom layout engine based on `druid` | 2019-11-11 | 1 | -4/+8 | |
| | |||||
* | Draft new layout API | 2019-11-10 | 1 | -6/+6 | |
| | |||||
* | Remove generic handle in `Image` | 2019-10-22 | 1 | -10/+8 | |
| | | | | For now, we will simply assume images will be loaded from a given path. | ||||
* | Rename `Renderer::Primitive` to `Renderer::Output` | 2019-10-11 | 1 | -3/+2 | |
| | |||||
* | Make `iced_core::Button` customizable | 2019-10-08 | 1 | -2/+2 | |
| | | | | | | | Now it supports: - Any kind of content - Custom border radius - Custom background | ||||
* | Move `MouseCursor` to `iced_wgpu` | 2019-10-05 | 1 | -1/+1 | |
| | |||||
* | Add `Renderer` and `Primitive` concepts | 2019-10-05 | 1 | -6/+5 | |
| | |||||
* | Complete some `hash_layout` implementations | 2019-09-20 | 1 | -3/+2 | |
| | |||||
* | Create `iced_core` and `iced_native` | 2019-09-20 | 1 | -0/+67 | |