summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | Added in check for web-colors.Libravatar Bingus2023-06-081-7/+16
| * | | | | Adjusted offscreen pass to be a render pass vs compute for compat with web-co...Libravatar Bingus2023-06-084-58/+166
| * | | | | Fix width of crop labels in `screenshot` example (again)Libravatar Héctor Ramón Jiménez2023-06-061-4/+4
| * | | | | Rearrange controls of the `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-32/+52
| * | | | | Introduce `on_press_maybe` helper for `Button`Libravatar Héctor Ramón Jiménez2023-06-062-4/+14
| * | | | | Wrap `Screenshot::bytes` in an `Arc` and implement `AsRef<[u8]>`Libravatar Héctor Ramón Jiménez2023-06-062-5/+16
| * | | | | Avoid `iced_image` import in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-5/+4
| * | | | | Fix punctuation in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-2/+2
| * | | | | Fix width of crop labels in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-4/+4
| * | | | | Create `numeric_input` helper in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-44/+54
| * | | | | Use `Container::Box` in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-17/+1
| * | | | | Added offscreen rendering support for wgpu & tiny-skia exposed with the windo...Libravatar Bingus2023-06-0616-24/+893
| |/ / / /
* | | | | Merge pull request #1921 from iced-rs/subpixel-glyph-positioningLibravatar Héctor Ramón2023-06-2610-108/+51
|\ \ \ \ \
| * | | | | Clear text caches after a font is loadedLibravatar Héctor Ramón Jiménez2023-06-212-0/+4
| * | | | | Use subpixel glyph positioning and layout linearityLibravatar Héctor Ramón Jiménez2023-06-2010-108/+47
* | | | | | Merge pull request #1931 from GyulyVGC/patch-1Libravatar Héctor Ramón2023-06-251-2/+2
|\ \ \ \ \ \
| * | | | | | Update BUG-REPORT.ymlLibravatar Giuliano Bellini2023-06-251-2/+2
|/ / / / / /
* | | | | | Merge pull request #1929 from tarkah/update/winitLibravatar Héctor Ramón2023-06-231-1/+1
|\ \ \ \ \ \
| * | | | | | Update winitLibravatar Cory Forsstrom2023-06-231-1/+1
|/ / / / / /
* | | | | | Merge pull request #1928 from tarkah/fix/vendored-buildLibravatar Héctor Ramón2023-06-232-2/+1
|\ \ \ \ \ \
| * | | | | | Provide access to font from each crateLibravatar Cory Forsstrom2023-06-222-2/+1
|/ / / / / /
* | | | | / Center `Submit` button vertically in `styling` exampleLibravatar Héctor Ramón Jiménez2023-06-211-1/+3
| |_|_|_|/ |/| | | |
* | | | | Merge pull request #1925 from iced-rs/update/ouroborosLibravatar Héctor Ramón2023-06-212-6/+2
|\ \ \ \ \
| * | | | | Update `ouroboros` dependencyLibravatar Héctor Ramón Jiménez2023-06-212-6/+2
| |/ / / /
* | | | | Merge pull request #1924 from iced-rs/fix/nested-overlay-translationLibravatar Héctor Ramón2023-06-211-1/+1
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Fix `translation` in `layout` of `Nested` overlayLibravatar Héctor Ramón Jiménez2023-06-211-1/+1
|/ / / /
* | | | Fix outdated release version in `BUG-REPORT.yml`Libravatar Héctor Ramón Jiménez2023-06-161-1/+1
* | | | Merge pull request #1918 from iced-rs/update/glyphon-and-cosmic-textLibravatar Héctor Ramón2023-06-163-20/+15
|\ \ \ \
| * | | | Update `glyphon` and `cosmic-text`Libravatar Héctor Ramón Jiménez2023-06-163-20/+15
* | | | | Merge pull request #1917 from JonathanLindsey/subscription_channel_FnOnceLibravatar Héctor Ramón2023-06-161-1/+1
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Make the subscription::channel function take a FnOnce closure instead of a Fn...Libravatar Jonathan Lindsey2023-06-101-1/+1
| |/ / /
* | | | Merge pull request #1719 from tarkah/feat/nested-overlayLibravatar Héctor Ramón2023-06-1414-141/+667
|\ \ \ \ | |_|_|/ |/| | |
| * | | Fix cursor availability in `overlay::Nested::draw`Libravatar Héctor Ramón Jiménez2023-06-141-1/+1
| * | | Make `overlay::Menu` publish messages on selectionLibravatar Héctor Ramón Jiménez2023-06-142-42/+42
| * | | Use nested for lazy widgetsLibravatar Cory Forsstrom2023-06-147-49/+77
| * | | Cursor availability during on_eventLibravatar Cory Forsstrom2023-06-141-23/+50
| * | | Remove interior mutabilityLibravatar Cory Forsstrom2023-06-142-80/+42
| * | | Use layout with children for nestingLibravatar Cory Forsstrom2023-06-141-59/+71
| * | | Cursor availability by layerLibravatar Cory Forsstrom2023-06-141-6/+28
| * | | Remove unwraps in `overlay::Nested` and fix `mouse_interaction`Libravatar Cory Forsstrom2023-06-141-51/+69
| * | | Prioritize mouse interaction of deepest `Overlay`Libravatar Cory Forsstrom2023-06-141-9/+21
| * | | Render nested in layerLibravatar Cory Forsstrom2023-06-141-1/+3
| * | | Add nested picklist to modal exampleLibravatar Cory Forsstrom2023-06-141-2/+55
| * | | Add nested overlay method to group & mapLibravatar Cory Forsstrom2023-06-142-0/+25
| * | | Introduce internal `overlay::Nested` for `UserInterface`Libravatar Cory Forsstrom2023-06-149-41/+406
|/ / /
* | | Merge pull request #1910 from tarkah/fix/scrollable-scroll-wheelLibravatar Héctor Ramón2023-06-131-0/+4
|\ \ \
| * | | Only scroll w/ wheel if over scrollableLibravatar Cory Forsstrom2023-06-121-0/+4
|/ / /
* | | Merge pull request #1904 from iced-rs/cursor-availabilityLibravatar Héctor Ramón2023-06-0960-963/+859
|\ \ \ | |/ / |/| |
| * | Fix mouse interactions in `Scrollable`Libravatar Héctor Ramón Jiménez2023-06-081-4/+24
| * | Use `mouse::Cursor` in `integration` exampleLibravatar Héctor Ramón Jiménez2023-06-081-15/+27