summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Access `lyon_algorithms` indirectly through `lyon`Libravatar Héctor Ramón Jiménez2022-02-032-7/+3
|
* Ask for a slice of segments instead of ownership in `LineDash`Libravatar Héctor Ramón Jiménez2022-02-035-26/+26
|
* Fix examples, no longer CopyLibravatar Cory Forsstrom2022-01-271-2/+2
|
* Increase gap in exampleLibravatar Cory Forsstrom2022-01-271-1/+1
|
* Remove vec allocationLibravatar Cory Forsstrom2022-01-271-35/+36
|
* Add line dash APILibravatar Cory Forsstrom2022-01-276-3/+76
|
* Merge pull request #1213 from iced-rs/fix/phantom-overlayLibravatar Héctor Ramón2022-01-221-2/+4
|\ | | | | Fix previous `overlay` affecting `cursor_position` during `draw` in `UserInterface`
| * Fix previous `overlay` affecting `cursor_position` during `draw` in ↵Libravatar Héctor Ramón Jiménez2022-01-221-2/+4
|/ | | | `UserInterface`
* Merge pull request #1209 from iced-rs/checkbox-radio-text-colorLibravatar Héctor Ramón2022-01-216-33/+21
|\ | | | | Remove ambiguous `text_color` attributes for `Checkbox` and `Radio`
| * Remove ambiguous `text_color` attributes for `Checkbox` and `Radio`Libravatar Héctor Ramón Jiménez2022-01-206-33/+21
| | | | | | | | Instead, always use a `StyleSheet`.
* | Merge pull request #1206 from iced-rs/fix/responsive-window-resizeLibravatar Héctor Ramón2022-01-201-1/+5
|\ \ | | | | | | Invalidate widget tree in `Responsive` after a `window::Event::Resized`
| * | Invalidate widget tree in `Responsive` after a `window::Event::Resized`Libravatar Héctor Ramón Jiménez2022-01-201-1/+5
| |/ | | | | | | | | | | | | | | This is a pessimistic approach! Ideally, we should be able to recreate only the contents of the `Responsive` widget in `Widget::layout`, but given `view` is impure we have to trigger a brand new `view` call. The persistent widget tree should make this easier.
* | Remove `position` abbreviation in `Component`Libravatar Héctor Ramón Jiménez2022-01-201-2/+5
| |
* | component overlay position fixLibravatar cossonleo2022-01-201-6/+8
|/
* Recompute layout of `Responsive` contents when size changesLibravatar Héctor Ramón Jiménez2022-01-201-1/+3
|
* Write `CNAME` file before publishing in `document` workflowLibravatar Héctor Ramón Jiménez2022-01-191-0/+2
|
* Create worflow to publish latest docs to `iced-rs/docs`Libravatar Héctor Ramón Jiménez2022-01-191-0/+32
|
* Merge pull request #1198 from iced-rs/subscription-helpersLibravatar Héctor Ramón2022-01-1710-137/+615
|\ | | | | `websocket` example and helpers to create custom subscriptions
| * Add worker example to docs of `subscription::unfold`Libravatar Héctor Ramón Jiménez2022-01-171-0/+65
| |
| * Simplify `run` and `unfold` helpers to build a `Subscription`Libravatar Héctor Ramón Jiménez2022-01-172-96/+69
| |
| * Update `README` file of `websocket` exampleLibravatar Héctor Ramón Jiménez2022-01-161-1/+6
| |
| * Draft `websocket` example :tada:Libravatar Héctor Ramón Jiménez2022-01-168-73/+426
| |
| * Make `clock` example responsiveLibravatar Héctor Ramón Jiménez2022-01-151-5/+1
| |
| * Use `subscription::run` for `download_progress` exampleLibravatar Héctor Ramón Jiménez2022-01-151-84/+69
| |
| * Implement `subscription::worker` :tada:Libravatar Héctor Ramón Jiménez2022-01-141-0/+44
| |
| * Implement `subscription::unfold` :tada:Libravatar Héctor Ramón Jiménez2022-01-141-1/+22
| |
| * Implement `subscription::run` :tada:Libravatar Héctor Ramón Jiménez2022-01-141-0/+19
| |
| * Rewrite `events` and `events_with` with a new `Runner` abstractionLibravatar Héctor Ramón Jiménez2022-01-142-45/+62
|/
* Merge pull request #1195 from iced-rs/fix/vulnerabilitiesLibravatar Héctor Ramón2022-01-1414-94/+53
|\ | | | | Fix `cargo-audit` vulnerabilities
| * Add `audit` workflow for GitHub CILibravatar Héctor Ramón Jiménez2022-01-131-0/+16
| |
| * Update `reqwest` in examplesLibravatar Héctor Ramón Jiménez2022-01-132-2/+7
| | | | | | | | ... and rely on `rustls` instead of `native-tls`
| * Replace `chrono` with `time` in `clock` exampleLibravatar Héctor Ramón Jiménez2022-01-122-11/+14
| |
| * Simplify version of the `palette` dependencyLibravatar Héctor Ramón Jiménez2022-01-121-1/+1
| |
| * Remove support for old `tokio` crateLibravatar Héctor Ramón Jiménez2022-01-129-80/+15
| |
* | Merge pull request #1193 from iced-rs/responsive-widgetLibravatar Héctor Ramón2022-01-1334-131/+765
|\ \ | |/ |/| `Responsive` widget
| * Write docs for `responsive` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-01-121-1/+13
| |
| * Write documentation for `component` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-01-121-8/+30
| |
| * Write missing docs for `user_interface` moduleLibravatar Héctor Ramón Jiménez2022-01-124-3/+9
| |
| * Increase text size of pane dimensions in `pane_grid` exampleLibravatar Héctor Ramón Jiménez2022-01-121-1/+1
| |
| * Implement `Widget::overlay` for `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-1213-248/+440
| |
| * Remove superfluous generic type in `iced_lazy::Cache`Libravatar Héctor Ramón Jiménez2022-01-111-10/+8
| |
| * Implement `Widget::mouse_interaction` for `Responsive`Libravatar Héctor Ramón Jiménez2022-01-111-21/+41
| |
| * Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-1124-58/+165
| |
| * Invalidate widget tree from `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-118-33/+85
| | | | | | | | ... by introducing a new `invalidate_widgets` method to `Shell`
| * Draft `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-1111-23/+248
|/
* Merge pull request #1164 from PolyMeilex/wgpu-updateLibravatar Héctor Ramón2022-01-0410-15/+15
|\ | | | | Update wgpu 0.12
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-01-042-4/+8
| |
| * Fix `integration_wgpu` exampleLibravatar Héctor Ramón Jiménez2022-01-041-0/+1
| |
| * Bump raw-window-handleLibravatar Poly2022-01-042-2/+2
| |
| * Update wgpu_glyphLibravatar Poly2022-01-041-1/+1
| |