summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add stronger guarantee of readability/contrast for palette background/text ↵Libravatar David Huculak2024-04-071-2/+10
| | | | color pairs
* Check is_secure before a copy/cut from TextInput (#2366)Libravatar Aaron McGuire2024-04-021-2/+4
| | | | | * Check is_secure before copy/cut on text_input * run cargo fmt
* Merge pull request #2358 from bungoboingo/text-editor-font-sizeLibravatar Héctor Ramón2024-04-021-0/+15
|\ | | | | Some text_editor QoL
| * Expose line_height & text_size fields for the text_editor widgetLibravatar Bingus2024-03-291-0/+15
| |
* | Implement `IntoFragment` for `Fragment`Libravatar Héctor Ramón Jiménez2024-04-021-0/+12
| |
* | Merge pull request #2364 from blazra/combobox-menu-fixLibravatar Héctor Ramón2024-04-021-28/+37
|\ \ | | | | | | combo_box: Do not draw empty menu overlay
| * | combo_box: Do not draw empty menu overlayLibravatar Radovan Blažek2024-04-011-28/+37
| | | | | | | | | | | | Fixes #2311
* | | Merge pull request #2363 from iced-rs/specialize-text-helperLibravatar Héctor Ramón2024-04-026-21/+107
|\ \ \ | |/ / |/| | Specialize `widget::text` helper
| * | Avoid extra text allocations in `websocket` exampleLibravatar Héctor Ramón Jiménez2024-04-022-9/+18
| | |
| * | Implement `IntoFragment` for `usize` and `isize`Libravatar Héctor Ramón Jiménez2024-04-021-0/+2
| | |
| * | Rename `text::IntoContent` to `IntoFragment`Libravatar Héctor Ramón Jiménez2024-04-012-41/+41
| | |
| * | Reintroduce old `text` helper as `value` helperLibravatar Héctor Ramón Jiménez2024-04-012-9/+16
| | |
| * | Specialize `widget::text` helper with custom `IntoContent` traitLibravatar Héctor Ramón Jiménez2024-04-015-10/+78
|/ /
* | Merge pull request #2362 from iced-rs/size-hint-for-row-columnsLibravatar Héctor Ramón2024-04-013-8/+56
|\ \ | | | | | | Use `Iterator::size_hint` to initialize `Column` and `Row` capacity
| * | Use `Iterator::size_hint` to initialize `Column` and `Row` capacityLibravatar Héctor Ramón Jiménez2024-04-013-8/+56
|/ /
* | Fix `wasm_bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2024-04-011-2/+1
| |
* | Use `rustc-hash` for most of our `HashMap` and `HashSet` instancesLibravatar Héctor Ramón Jiménez2024-04-0119-49/+60
| |
* | Merge pull request #2360 from iced-rs/avoid-fill-text-allocationLibravatar Héctor Ramón2024-04-0110-20/+22
|\ \ | | | | | | Use generic `Content` in `Text` to avoid reallocation in `fill_text`
| * | Use generic `Content` in `Text` to avoid reallocation in `fill_text`Libravatar Héctor Ramón Jiménez2024-04-0110-20/+22
|/ /
* | Merge pull request #2357 from iced-rs/wgpu/use-staging-beltLibravatar Héctor Ramón2024-03-3015-53/+156
|\ \ | |/ |/| Use a `StagingBelt` in `iced_wgpu` for regular buffer uploads
| * Update `glyphon` for instanced renderingLibravatar Héctor Ramón Jiménez2024-03-301-1/+1
| |
| * Replace `xxhash-rust` with `rustc-hash`Libravatar Héctor Ramón Jiménez2024-03-306-12/+6
| |
| * Fix batched writes logic in `iced_wgpu::buffer`Libravatar Héctor Ramón Jiménez2024-03-301-27/+32
| |
| * Update `glyphon` with more performance improvementsLibravatar Héctor Ramón Jiménez2024-03-301-1/+1
| | | | | | | | | | | | See: - https://github.com/grovesNL/glyphon/pull/90 - https://github.com/grovesNL/glyphon/pull/91
| * Split big `Buffer` writes into multiple chunksLibravatar Héctor Ramón Jiménez2024-03-292-9/+38
| |
| * Add documentation to `Backend::recall` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-03-291-0/+3
| |
| * Use a `StagingBelt` in `iced_wgpu` for regular buffer uploadsLibravatar Héctor Ramón Jiménez2024-03-2910-41/+113
| |
* | Merge pull request #2354 from Koranir/custom-shadow-fixLibravatar Héctor Ramón2024-03-272-4/+11
|\ \ | |/ |/| Fix quad shadows
| * Make tiny-skia equivalentLibravatar Daniel Yoon2024-03-261-1/+2
| |
| * Update solid.wgslLibravatar Daniel Yoon2024-03-261-3/+9
| |
* | Derive `Debug` for `qr_code::Data` in `iced_widget`Libravatar Héctor Ramón Jiménez2024-03-261-1/+1
| |
* | Propagate `advanced` feature to `iced_core`Libravatar Héctor Ramón Jiménez2024-03-262-1/+2
|/
* Merge pull request #2350 from iced-rs/theming-revolutionsLibravatar Héctor Ramón2024-03-2533-1048/+1335
|\ | | | | Theming Revolutions
| * Make defaults of composite widgets configurableLibravatar Héctor Ramón Jiménez2024-03-253-15/+35
| |
| * Use `Catalog` approach for all widgetsLibravatar Héctor Ramón Jiménez2024-03-2430-915/+1130
| |
| * Fine-tune `Catalog` approach for `button`, `checkbox`, and `svg`Libravatar Héctor Ramón Jiménez2024-03-249-149/+167
| |
| * Try catalog theming approach with `Button`Libravatar Héctor Ramón Jiménez2024-03-235-54/+88
| |
* | Merge pull request #2351 from iced-rs/custom-renderer-injectionLibravatar Héctor Ramón2024-03-2556-1447/+1886
|\ \ | | | | | | Type-Driven Renderer Fallback
| * | Remove redundant `text::Renderer` bound in `program`Libravatar Héctor Ramón Jiménez2024-03-241-1/+1
| | |
| * | Reintroduce backend selection through `ICED_BACKEND` env varLibravatar Héctor Ramón Jiménez2024-03-248-85/+198
| | |
| * | Rename `compositor::Renderer` to `Default`Libravatar Héctor Ramón Jiménez2024-03-229-21/+26
| | |
| * | Fix unnecessary `into` calls in `iced_renderer::fallback`Libravatar Héctor Ramón Jiménez2024-03-221-4/+2
| | |
| * | Allow custom renderers in `Program` and `Application`Libravatar Héctor Ramón Jiménez2024-03-2219-122/+162
| | |
| * | Fix standalone compilation of `iced_widget` crateLibravatar Héctor Ramón Jiménez2024-03-226-1/+81
| | |
| * | Make `iced_tiny_skia` optional with a `tiny-skia` featureLibravatar Héctor Ramón Jiménez2024-03-2220-92/+158
| | |
| * | Fix outdated warning in docs of `Frame::fill_text`Libravatar Héctor Ramón Jiménez2024-03-221-8/+1
| | |
| * | Fix broken links in documentationLibravatar Héctor Ramón Jiménez2024-03-229-54/+73
| | |
| * | Restore `canvas::Frame` APILibravatar Héctor Ramón Jiménez2024-03-2222-679/+378
| | |
| * | Restore `canvas::Program` APILibravatar Héctor Ramón Jiménez2024-03-2112-53/+71
| | |
| * | Remove `custom` module from `iced_renderer`Libravatar Héctor Ramón Jiménez2024-03-211-162/+0
| | |