Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix: Don't rely on image handle not being dropped | 2021-03-21 | 1 | -36/+21 | |
| | | | | It now causes a memory leak, though. :/ | ||||
* | feat(web): Support in-memory image data | 2021-03-21 | 1 | -0/+39 | |
| | | | | | | I had to create two methods which basically do the same thing, `from_memory` and `from_slice`, but `from_memory` takes ownership of the bytes to be compatible with `iced_native`. Also, `Data` is incompatible, because if I stored the bytes in `Data` and created a new object URL every render, it would have caused a memory leak because bumpalo doesn't call destructors and there'd be no way to call URL.revokeObjectUrl on it. It's also more efficient this way. | ||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -18/+0 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Use `String::from_str_in` in `iced_web` | 2020-07-01 | 1 | -6/+11 | |
| | |||||
* | add some accessibility features to web widgets | 2020-04-21 | 1 | -1/+15 | |
| | |||||
* | Add `From<String>` for `image::Handle` in `iced_web` | 2020-02-06 | 1 | -0/+6 | |
| | |||||
* | Add `Handle` and `Data` to `image` in `iced_web` | 2020-02-05 | 1 | -5/+78 | |
| | |||||
* | Rename module `style` to `css` in `iced_web` | 2020-02-05 | 1 | -2/+2 | |
| | |||||
* | Add `Length::FillPortion` variant | 2019-12-30 | 1 | -1/+1 | |
| | | | | | It allows to specify the amount of available space an element should take relative to other elements. | ||||
* | Make `tour` work with `iced_web` again :tada: | 2019-11-23 | 1 | -1/+2 | |
| | | | | | - Implements `TextInput`, `Scrollable`, and `Container` - Adds basic style generation | ||||
* | Move widgets from `core` to `native` and `web` | 2019-11-21 | 1 | -1/+49 | |
| | | | | Also made fields private and improved `Renderer` traits. | ||||
* | Remove generic handle in `Image` | 2019-10-22 | 1 | -5/+5 | |
| | | | | For now, we will simply assume images will be loaded from a given path. | ||||
* | Make example work on web and update READMEs | 2019-09-21 | 1 | -0/+2 | |
| | |||||
* | Create `iced_core` and `iced_native` | 2019-09-20 | 1 | -6/+14 | |
| | |||||
* | Draft nodes for missing widgets | 2019-09-15 | 1 | -2/+23 | |
| | |||||
* | Draft web runtime and widgets | 2019-09-14 | 1 | -0/+11 | |