summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix empty `id` and `name` attributes in `iced_web`Libravatar Héctor Ramón Jiménez2020-07-012-23/+37
|
* add some accessibility features to web widgetsLibravatar Tom Pridham2020-04-213-6/+61
|
* Merge pull request #305 from hecrj/element-on-eventLibravatar Héctor Ramón2020-04-191-0/+22
|\ | | | | Implement and expose `Element::on_event`
| * Implement and expose `Element::on_event`Libravatar Héctor Ramón Jiménez2020-04-181-0/+22
| |
* | fix progress bar docs to no longer mention buttons (#301)Libravatar ethanpailes2020-04-181-4/+4
|/
* Revert "Merge pull request #289 from hecrj/fix/cursor-events"Libravatar Héctor Ramón Jiménez2020-04-172-15/+2
| | | | | | | | `winit` seems to produce `CursorEntered` and `CursorLeft` events after wheel scrolling for no apparent reason (?). This causes annoying flickering when hovering some widgets on a scrollable. I should investigate this further. We are rolling back the fix for the time being.
* Fix MSAA blit vertex shader to match `wgpu` NDCLibravatar Héctor Ramón Jiménez2020-04-163-4/+4
|
* Change `&mut wgpu::Device` to `&wgpu::Device` (#299)Libravatar Lain-dono2020-04-165-13/+10
| | | | | * Change `&mut wgpu::Device` to `&wgpu::Device` * Fix for rustfmt
* Merge pull request #269 from hecrj/update-wgpuLibravatar Héctor Ramón2020-04-1613-268/+313
|\ | | | | Update `wgpu` to `0.5` in `iced_wgpu`
| * Use new release of `wgpu_glyph`Libravatar Héctor Ramón Jiménez2020-04-131-1/+1
| |
| * Fix `angle` sign in `canvas::Frame::rotate`Libravatar Héctor Ramón Jiménez2020-04-081-1/+1
| |
| * Update `wgpu` to `0.5` in `iced_wgpu` :tada:Libravatar Héctor Ramón Jiménez2020-04-0712-267/+312
| |
* | Bump versions :tada:Libravatar Héctor Ramón Jiménez2020-04-158-10/+15
| |
* | Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2020-04-151-0/+35
| |
* | Mention flags are not supported by `Sandbox`Libravatar Héctor Ramón Jiménez2020-04-151-3/+3
| | | | | | | | Fixes #291
* | Merge pull request #293 from hecrj/improvement/canvas-ergonomicsLibravatar Héctor Ramón2020-04-157-85/+118
|\ \ | | | | | | Improve `Canvas` ergonomics
| * | Simplify drawing logic in `clock` exampleLibravatar Héctor Ramón Jiménez2020-04-141-42/+32
| | |
| * | Implement `canvas::Path::line` helper methodLibravatar Héctor Ramón Jiménez2020-04-141-0/+11
| | |
| * | Implement `canvas::Path::circle` helper methodLibravatar Héctor Ramón Jiménez2020-04-143-11/+15
| | |
| * | Implement `canvas::Path::rectangle` helper methodLibravatar Héctor Ramón Jiménez2020-04-143-17/+23
| | |
| * | Implement `From<&str>` for `canvas::Text`Libravatar Héctor Ramón Jiménez2020-04-141-0/+6
| | |
| * | Implement `From<String>` for `canvas::Text`Libravatar Héctor Ramón Jiménez2020-04-141-0/+9
| | |
| * | Make `Frame::fill_text` take a generic `Into<Text>`Libravatar Héctor Ramón Jiménez2020-04-141-1/+3
| | |
| * | Make `Frame::stroke` take a generic `Into<Stroke>`Libravatar Héctor Ramón Jiménez2020-04-141-1/+3
| | |
| * | Implement `From<Color>` for `canvas::Fill`Libravatar Héctor Ramón Jiménez2020-04-143-12/+15
| | |
| * | Make `Frame::fill` take a generic `Into<Fill>`Libravatar Héctor Ramón Jiménez2020-04-141-2/+2
| | | | | | | | | | | | This can be used to improve readability by using your own types.
* | | Merge pull request #294 from MrMonotone/patch-1Libravatar Héctor Ramón2020-04-143-4/+11
|\ \ \ | |/ / |/| | Fix tour example
| * | Check Wasm compilation of `tour` example in CILibravatar Héctor Ramón Jiménez2020-04-141-0/+2
| | |
| * | Fix `Checkbox` and `Radio` API in `iced_web`Libravatar Héctor Ramón Jiménez2020-04-143-5/+10
| | |
| * | Fix tour exampleLibravatar Nicholas2020-04-131-1/+1
|/ /
* | Merge pull request #290 from AlisCode/aliscode/288/remove-unnecessary-staticLibravatar Héctor Ramón2020-04-1312-35/+46
|\ \ | | | | | | Remove unnecessary 'static lifetimes on `Renderer` traits
| * | Rename leftover `TextInputWidget` to `Marker`Libravatar Héctor Ramón Jiménez2020-04-131-2/+2
| | |
| * | #288 Renamed XXXWidget to MarkerLibravatar Olivier Pinon2020-04-1211-21/+22
| | |
| * | Remove unnecessary 'static lifetime on RendererLibravatar Olivier Pinon2020-04-1211-34/+44
| | |
* | | Merge pull request #289 from hecrj/fix/cursor-eventsLibravatar Héctor Ramón2020-04-132-2/+15
|\ \ \ | |/ / |/| | Produce and handle `CursorEntered` and `CursorLeft`
| * | Make cursor unavailable on leave in `iced_winit`Libravatar Héctor Ramón Jiménez2020-04-121-2/+9
| | | | | | | | | | | | | | | | | | | | | For now, we just set the cursor position to some negative coordinates. This is a temporary hack until we are able to encode cursor availability. Layers and/or multi-window support will make this apparent.
| * | Produce cursor events in `iced_winit::conversion`Libravatar Héctor Ramón Jiménez2020-04-121-0/+6
|/ /
* | Merge pull request #281 from hecrj/fix/canvas-text-alignmentLibravatar Héctor Ramón2020-04-106-26/+56
|\ \ | | | | | | Align text in `iced_wgpu` on a case-by-case basis
| * | Fix `bezier_tool` placeholder text alignmentLibravatar Héctor Ramón Jiménez2020-04-101-3/+7
| | |
| * | Align text in `iced_wgpu` on a case-by-case basisLibravatar Héctor Ramón Jiménez2020-04-105-23/+49
|/ /
* | Merge pull request #279 from hecrj/fix/text-input-measure-valueLibravatar Héctor Ramón2020-04-101-7/+17
|\ \ | | | | | | Fix `text_input::Renderer` implementation in `iced_wgpu`
| * | Fix unnecessary clip of text input in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-091-4/+14
| | | | | | | | | | | | | | | It should only produce a `Clip` primitive when the contents overflow the input now.
| * | Fix `measure_value` for text input in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-091-3/+3
| | | | | | | | | | | | It accounts for spaces at the start of text now.
* | | Merge pull request #278 from hecrj/fix/canvas-empty-meshLibravatar Héctor Ramón2020-04-101-7/+9
|\ \ \ | |/ / |/| | Stop generating empty `Mesh2D` in `canvas::Frame`
| * | Stop generating empty `Mesh2D` in `canvas::Frame`Libravatar Héctor Ramón Jiménez2020-04-091-7/+9
|/ /
* | Merge pull request #267 from robjtede/improve/canvas-cache-defaultLibravatar Héctor Ramón2020-04-093-9/+26
|\ \ | |/ |/| impl default for canvas cache
| * impl default for canvas cacheLibravatar Rob Ede2020-04-083-9/+26
| |
* | Merge pull request #268 from FabianLars/ctrl-delLibravatar Héctor Ramón2020-04-071-0/+15
|\ \ | | | | | | implement ctrl + del on text-input
| * | implement ctrl + del on text-inputLibravatar FabianLars2020-04-061-0/+15
| |/
* | Merge pull request #266 from robjtede/improve/flags-initLibravatar Héctor Ramón2020-04-061-0/+16
|\ \ | | | | | | add init method for settings with flags