Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use data urls instead of blob URLs | 2021-04-10 | 1 | -15/+6 | |
| | | | | I didn't do this originally because I was half doing it in the first place to mess with Blob URLs, and it feels kinda wrong to be encoding it as base64 when that option is available. But not having memory leaks is more important. | ||||
* | 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. | ||||
* | Allow dead code explicitly in `iced_web` | 2021-02-16 | 6 | -0/+8 | |
| | |||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 13 | -218/+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 | 6 | -40/+67 | |
| | |||||
* | Merge pull request #292 from TomPridham/feature/accessibility-web | 2020-07-01 | 3 | -10/+79 | |
|\ | | | | | add some accessibility features to web widgets | ||||
| * | Fix empty `id` and `name` attributes in `iced_web` | 2020-07-01 | 2 | -23/+37 | |
| | | |||||
| * | add some accessibility features to web widgets | 2020-04-21 | 3 | -6/+61 | |
| | | |||||
* | | Update `Slider` docs in `iced_web` | 2020-06-13 | 1 | -1/+2 | |
| | | |||||
* | | Make `Slider` value generic in `iced_web` | 2020-06-13 | 1 | -21/+40 | |
| | | |||||
* | | Add `step` member to slider widgets | 2020-06-11 | 1 | -2/+14 | |
|/ | | | | | | Both the native and the web slider now have a member `step` to control the least possible change of the slider's value. It defaults to 1.0 for all sliders and can be adjusted with the step method. | ||||
* | Fix `Checkbox` and `Radio` API in `iced_web` | 2020-04-14 | 2 | -4/+9 | |
| | |||||
* | Implement `padding` support for `Container` | 2020-03-31 | 1 | -1/+14 | |
| | |||||
* | Implement `Column` and `Row` changes in `iced_web` | 2020-03-17 | 2 | -24/+6 | |
| | |||||
* | Instantiate Column and Row with children | 2020-03-16 | 2 | -0/+32 | |
| | |||||
* | Add `font-family` to `Text` style in `iced_web` | 2020-02-06 | 1 | -2/+6 | |
| | |||||
* | Implement `TextInput::on_submit` support in `iced_web` | 2020-02-06 | 1 | -2/+22 | |
| | |||||
* | Implement `TextInput` styling in `iced_web` | 2020-02-06 | 1 | -13/+17 | |
| | |||||
* | Fix `ProgressBar` doc example in `iced_web` | 2020-02-06 | 1 | -4/+3 | |
| | |||||
* | Implement `Container` styling in `iced_web` | 2020-02-06 | 1 | -14/+15 | |
| | |||||
* | Add style to `TextInput` in `iced_web` | 2020-02-06 | 1 | -0/+10 | |
| | |||||
* | Fix `Column` and `Row` styling for `iced_web` | 2020-02-06 | 2 | -22/+12 | |
| | |||||
* | Fix `Checkbox` styling in `iced_web` | 2020-02-06 | 1 | -4/+18 | |
| | |||||
* | Fix `Button` styling in `iced_web` | 2020-02-06 | 1 | -7/+4 | |
| | |||||
* | Implement `ProgressBar` widget in `iced_web` | 2020-02-06 | 1 | -0/+125 | |
| | |||||
* | Expose styling types for `container` in `iced_web` | 2020-02-06 | 1 | -0/+12 | |
| | |||||
* | Expose styling types for `radio` in `iced_web` | 2020-02-06 | 1 | -6/+8 | |
| | |||||
* | Expose styling types for `checkbox` in `iced_web` | 2020-02-06 | 1 | -7/+20 | |
| | |||||
* | Expose missing widget modules in `iced_web` | 2020-02-06 | 4 | -0/+6 | |
| | |||||
* | Expose styling types for `scrollable` in `iced_web` | 2020-02-06 | 1 | -2/+14 | |
| | |||||
* | Expose styling types for `slider` in `iced_web` | 2020-02-06 | 1 | -1/+13 | |
| | |||||
* | 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 | |
| | |||||
* | Support styling for `Button` in `iced_web` | 2020-02-05 | 4 | -24/+42 | |
| | |||||
* | Rename module `style` to `css` in `iced_web` | 2020-02-05 | 12 | -54/+54 | |
| | |||||
* | Support event subscriptions in `iced_web` | 2020-02-04 | 5 | -16/+10 | |
| | | | | Also improves the overall web runtime, avoiding nested update loops. | ||||
* | Remove `Message: Clone` bound in some web widgets | 2020-01-13 | 4 | -10/+13 | |
| | |||||
* | Merge branch 'master' into feature/shrink-by-default | 2020-01-09 | 3 | -1/+84 | |
|\ | |||||
| * | add(web): support password field | 2020-01-03 | 1 | -0/+14 | |
| | | |||||
| * | Merge pull request #138 from hecrj/feature/empty-widget | 2019-12-31 | 1 | -0/+69 | |
| |\ | | | | | | | `Space` widget | ||||
| | * | Rename `Empty` widget to `Space` | 2019-12-30 | 1 | -25/+24 | |
| | | | |||||
| | * | Implement `Empty` widget | 2019-12-30 | 1 | -0/+70 | |
| | | | | | | | | | | | | It can be useful if you want to fill some space with nothing. | ||||
| * | | 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 `Row`, `Column`, and `Checkbox` shrink by default | 2019-12-30 | 3 | -3/+3 | |
|/ | |||||
* | Merge pull request #128 from Gohla/fix_unnecessary_bound | 2019-12-18 | 1 | -1/+1 | |
|\ | | | | | Remove unnecessary bound in iced_web Container | ||||
| * | Fix unnecessary bound in web. | 2019-12-18 | 1 | -1/+1 | |
| | | |||||
* | | Add several missing style attributes in iced_web. | 2019-12-18 | 5 | -7/+26 | |
|/ | |||||
* | Make `Button::background` generic | 2019-12-05 | 1 | -2/+2 | |
| | |||||
* | Style `Button` min-width in `iced_web` | 2019-11-24 | 1 | -10/+5 | |
| |