summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [wgpu 0.7] Update integration exampleLibravatar Poly2021-02-032-24/+24
|
* Fix TextureViewDimension for imageLibravatar Poly2021-02-031-1/+1
| | | wgpu validation helped to find this long standing type error
* Fix ScissorRectLibravatar Poly2021-02-031-1/+2
| | | - Breaks `TODO: Address anti-aliasing adjustments properly`
* [wgpu 0.7] triangle/msaa disable filteringLibravatar Poly2021-02-031-2/+2
|
* [wgpu 0.7] Update image.rsLibravatar Poly2021-02-031-55/+66
|
* [wgpu 0.7] Update triangle.rsLibravatar Poly2021-02-031-52/+60
|
* [wgpu 0.7] Update triangle/msaa.rsLibravatar Poly2021-02-031-34/+40
| | | | | | | Notes: - not sure if `filtering sampler` should be used, so for now it is not used .
* [wgpu 0.7] Update window/compositor.rsLibravatar Poly2021-02-031-3/+6
| | | | Notes: - wgpu::PowerPreference::Default no longer exists, maybe there is another way to replicate its behavior.
* [wgpu 0.7] Update quad.rsLibravatar Poly2021-02-031-54/+62
|
* The beginning of wgpu 0.7 updateLibravatar Poly2021-02-031-2/+2
| | | hecrj/iced#723
* Merge pull request #720 from taiki-e/style-cloneLibravatar Héctor Ramón2021-01-294-4/+4
|\ | | | | impl Clone and Copy for all Style types in iced_style
| * impl Clone and Copy for all Style types in iced_styleLibravatar Taiki Endo2021-01-294-4/+4
| |
* | Merge pull request #719 from taiki-e/error-send-syncLibravatar Héctor Ramón2021-01-291-1/+12
|\ \ | |/ |/| Make iced::Error Send + Sync
| * Make iced::Error Send + SyncLibravatar Taiki Endo2021-01-291-1/+12
|/
* update example description at sandbox's documentation (#710)Libravatar GunpowderGuy2021-01-221-3/+3
| | | | | | | | | * Update sandbox.rs * Update sandbox.rs * format Co-authored-by: Diego Rosario <diegorosario2013@gmail.com>
* Disable default features of `qrcode` for `iced_graphics`Libravatar Héctor Ramón Jiménez2021-01-211-0/+1
|
* Use `smol::Timer::interval` for `time::Every`Libravatar Héctor Ramón Jiménez2021-01-151-9/+1
|
* Fix consistency in `CHANGELOG`Libravatar Héctor Ramón Jiménez2021-01-151-0/+1
|
* Merge pull request #699 from JayceFayne/smolLibravatar Héctor Ramón2021-01-1510-11/+151
|\ | | | | Add `smol` async runtime support
| * Fix `time::Every` implementation for `smol` runtimeLibravatar Héctor Ramón Jiménez2021-01-153-3/+11
| |
| * Add latest release (`0.2.0`) to `CHANGELOG`Libravatar Héctor Ramón Jiménez2021-01-151-3/+46
| |
| * Keep old behavior for `Executor` feature flagsLibravatar Héctor Ramón Jiménez2021-01-151-14/+7
| |
| * Update `CHANGELOG.md`Libravatar Jayce Fayne2021-01-141-0/+3
| |
| * Add `smol` async runtimeLibravatar Jayce Fayne2021-01-148-10/+103
| |
* | Merge pull request #701 from cossonfork/focus_eventLibravatar Héctor Ramón Jiménez2021-01-152-1/+12
|\ \
| * | Split `window::Event::Focused` into two variantsLibravatar Héctor Ramón Jiménez2021-01-152-7/+12
| | |
| * | add focus eventLibravatar cossonleo2021-01-152-0/+6
|/ /
* | Fix `Widget::width` implementation for `PickList`Libravatar Héctor Ramón Jiménez2021-01-151-1/+1
| |
* | Merge pull request #700 from TannerRogalsky/fix_viewport_getterLibravatar Héctor Ramón2021-01-151-1/+1
|\ \ | |/ |/| Fix `physical_width` getter incorrectly returning the height
| * Fix `physical_width` getter incorrectly returning the heightLibravatar Tanner Rogalsky2021-01-141-1/+1
|/
* Merge pull request #694 from hecrj/fix/image-viewer-event-capturingLibravatar Héctor Ramón2021-01-121-5/+15
|\ | | | | Capture relevant events in `image::Viewer`
| * Capture relevant events in `image::Viewer`Libravatar Héctor Ramón Jiménez2021-01-111-5/+15
|/
* Use `BTreeMap` for splits and regions in `pane_grid`Libravatar Héctor Ramón Jiménez2021-01-074-12/+12
| | | | This preserves ordering between calls to update and draw logic.
* Remove unnecessary `SaveError` variant in `todos` exampleLibravatar Héctor Ramón Jiménez2021-01-041-2/+1
|
* Merge pull request #672 from yusdacra/tokio-1.0Libravatar Héctor Ramón2021-01-043-6/+19
|\ | | | | Update tokio to v1.0
| * Use `Instant::into_std` in `futures::time`Libravatar Héctor Ramón Jiménez2021-01-041-1/+1
| |
| * Update `tokio` to `1.0`Libravatar Yusuf Bera Ertan2021-01-043-6/+19
|/
* Merge pull request #678 from hecrj/feature/pane-grid-split-highlightLibravatar Héctor Ramón2021-01-049-37/+191
|\ | | | | Split highlight for the `PaneGrid` widget
| * Implement split highlight on hover for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-01-019-37/+191
|/
* Merge pull request #657 from clarkmoody/feature/pane-grid-title-contentsLibravatar Héctor Ramón2020-12-225-114/+81
|\ | | | | Generic Element Content in Pane Grid TitleBar
| * Remove unnecessary lifetime bound in `TitleBar`Libravatar Héctor Ramón Jiménez2020-12-221-1/+1
| |
| * Remove unnecessary `text::Renderer` bound for `PaneGrid`Libravatar Héctor Ramón Jiménez2020-12-222-7/+3
| | | | | | | | This is no longer necessary, as we do not render text directly anymore.
| * Update PaneGrid example with more complex TitleBarLibravatar Clark Moody2020-12-101-6/+28
| |
| * Replace TitleBar string title with generic ContentLibravatar Clark Moody2020-12-104-102/+51
| |
* | Merge pull request #669 from hecrj/improvement/update-resvg-and-font-kitLibravatar Héctor Ramón2020-12-203-20/+36
|\ \ | | | | | | Update `resvg` and `font-kit`
| * | Update `font-kit` to `0.10`Libravatar Héctor Ramón Jiménez2020-12-191-1/+1
| | |
| * | Update resvg to `0.12`Libravatar Greg V2020-12-192-19/+35
|/ /
* | Merge pull request #668 from hecrj/fix/propagate-button-eventsLibravatar Héctor Ramón2020-12-181-2/+13
|\ \ | | | | | | Propagate `Button` events to contents
| * | Propagate `Button` events to contentsLibravatar Héctor Ramón Jiménez2020-12-181-2/+13
| | |
* | | Merge pull request #319 from tarkah/image-paneLibravatar Héctor Ramón2020-12-187-7/+466
|\ \ \ | |/ / |/| | Add `ImagePane` widget