summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Free proxy slots unconditionally in `AboutToWait`Libravatar Héctor Ramón Jiménez2025-02-261-5/+5
|
* Merge pull request #2812 from andymandias/text_input-is_focusedLibravatar Héctor2025-02-232-0/+50
|\ | | | | `operation::focusable::is_focused` & `text_input::is_focused`
| * Nit fixes.Libravatar Andrew Baldwin2025-02-211-5/+5
| |
| * Add `is_focused` function that produces an `Operation` to get the focused ↵Libravatar Andrew Baldwin2025-02-212-0/+50
| | | | | | | | | | | | state of a `focusable` by ID. Add `is_focused` function that produces a `Task` to get the focused state of a `text_input` by ID.
* | Merge pull request #2811 from iced-rs/palette-tweaksLibravatar Héctor2025-02-239-46/+100
|\ \ | |/ |/| Tweak `Palette` Generation
| * Darken background of `Dark` themeLibravatar Héctor Ramón Jiménez2025-02-222-2/+2
| |
| * Improve `readable` fallback strategy in `palette`Libravatar Héctor Ramón Jiménez2025-02-221-11/+20
| |
| * Recreate `todos` snapshot testLibravatar Héctor Ramón Jiménez2025-02-221-1/+1
| |
| * Tweak colors of `Light` and `Dark` themesLibravatar Héctor Ramón Jiménez2025-02-221-3/+3
| |
| * Add `weakest` and `strongest` to `Background` paletteLibravatar Héctor Ramón Jiménez2025-02-228-31/+76
|/ | | | ... and tweak background shade generation logic.
* Merge pull request #2809 from iced-rs/rust-2024Libravatar Héctor2025-02-21155-239/+223
|\ | | | | Update to Rust 2024
| * Use new `async ||` closure syntax :tada:Libravatar Héctor Ramón Jiménez2025-02-213-3/+3
| |
| * Leverage new `AsyncFn` traits in `stream` moduleLibravatar Héctor Ramón Jiménez2025-02-212-13/+7
| |
| * Remove unnecessary `Future` importsLibravatar Héctor Ramón Jiménez2025-02-2110-13/+0
| |
| * Bump MSRV to `1.85`Libravatar Héctor Ramón Jiménez2025-02-211-1/+1
| |
| * Simplify imports of `clock` exampleLibravatar Héctor Ramón Jiménez2025-02-211-2/+2
| |
| * Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-2182-95/+96
| |
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2025-02-2159-96/+98
| |
| * Fix new `clippy` lintsLibravatar Héctor Ramón Jiménez2025-02-211-5/+5
| |
| * Update to Rust 2024 and fix compiler errorsLibravatar Héctor Ramón Jiménez2025-02-216-13/+13
|/
* Fix broken links in `Pop::delay` documentationLibravatar Héctor Ramón Jiménez2025-02-201-0/+4
|
* Implement `delay` for `pop` widget :tada:Libravatar Héctor Ramón Jiménez2025-02-193-39/+50
|
* Remove lifetime bound for `Text` in `markdown::paragraph`Libravatar Héctor Ramón Jiménez2025-02-191-2/+2
|
* Add `bounds` argument to `Component::operate`Libravatar Héctor Ramón Jiménez2025-02-181-1/+4
|
* Fix `markdown` compilation when `highlighter` feature is disabledLibravatar Héctor Ramón Jiménez2025-02-181-0/+1
|
* Merge pull request #2780 from l4l/forked-wasmtimerLibravatar Héctor2025-02-166-78/+33
|\ | | | | Use working wasmtimer for time::every
| * Use working wasmtimer for time::everyLibravatar Kitsu2025-02-026-78/+33
| |
* | Merge pull request #2797 from AMS21/fix_2794Libravatar Héctor2025-02-154-116/+204
|\ \ | | | | | | Fix system informations `cpu_brand` always being empty
| * | Use SI metrics for memory in `system_information` exampleLibravatar Héctor Ramón Jiménez2025-02-151-9/+9
| | |
| * | Update `sysinfo` to `0.33`Libravatar Héctor Ramón Jiménez2025-02-152-105/+189
| | |
| * | Fix system informations `cpu_brand` always being emptyLibravatar AMS212025-02-071-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | This was caused by a misuse of the `global_cpu_info` function, which does not contain a valid `cpu_brand` field. To fix this, we now get the first cpu and return it's brand instead. Fixes #2794
* | | Fix `physical_bounds` shadowing in `wgpu` renderLibravatar Héctor Ramón Jiménez2025-02-141-3/+6
| | |
* | | Fix `Component` not diffing when its state is recreatedLibravatar Héctor Ramón Jiménez2025-02-141-0/+3
| | |
* | | Fix outdated `id` mention in `Subscription` docsLibravatar Héctor Ramón Jiménez2025-02-141-1/+2
| | |
* | | Fix priority of redraw requests in `winit` shellLibravatar Héctor Ramón Jiménez2025-02-141-1/+1
| | |
* | | Merge pull request #2806 from rhysd/cache-preedit-spansLibravatar Héctor2025-02-141-0/+4
|\ \ \ | | | | | | | | Fix updating spans cache for pre-edit content in window manager
| * | | Fix updating spans cache for pre-edit content in window managerLibravatar rhysd2025-02-141-0/+4
|/ / /
* | | Merge pull request #2793 from rhysd/issue-2792Libravatar Héctor2025-02-138-116/+127
|\ \ \ | | | | | | | | Fix the initial candidate window position
| * | | Clear pre-edit window state when pre-edit content is `None`Libravatar rhysd2025-02-131-0/+2
| | | |
| * | | Simplify preedit overlay creationLibravatar Héctor Ramón Jiménez2025-02-131-8/+3
| | | |
| * | | Fix `request_input_method` call in `text_input`Libravatar Héctor Ramón Jiménez2025-02-121-15/+16
| | | |
| * | | Simplify `InputMethod` API with only two statesLibravatar Héctor Ramón Jiménez2025-02-128-102/+115
|/ / / | | | | | | | | | | | | Co-authored-by: rhysd <lin90162@yahoo.co.jp> Co-authored-by: KENZ <KENZ.gelsoft@gmail.com>
* | | Fix unneeded re-shaping during layout on `text_input` editLibravatar Héctor Ramón Jiménez2025-02-121-1/+1
| | |
* | | Merge pull request #2790 from rhysd/adjust-preedit-sizeLibravatar Héctor2025-02-124-6/+16
|\ \ \ | | | | | | | | Set correct text size for preedit window
| * | | Use default size for empty pre-editsLibravatar Héctor Ramón Jiménez2025-02-122-12/+4
| | | |
| * | | Do not pass text size to `Preedit::new`Libravatar rhysd2025-02-063-8/+12
| | | |
| * | | Set correct text size for text in preedit windowLibravatar rhysd2025-02-064-11/+25
| | | |
* | | | Merge pull request #2805 from iced-rs/feature/sipper-supportLibravatar Héctor2025-02-1217-190/+272
|\ \ \ \ | | | | | | | | | | `sipper` support and some QoL
| * | | | Use short version notation for `sipper`Libravatar Héctor Ramón Jiménez2025-02-111-1/+1
| | | | |
| * | | | Fix broken link in `Function` documentationLibravatar Héctor Ramón Jiménez2025-02-111-1/+1
| | | | |