summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in `core::Event` documentationLibravatar Héctor Ramón Jiménez2025-02-031-1/+1
|
* Fulfill `InputMethod` requests only during `RedrawRequested`Libravatar Héctor Ramón Jiménez2025-02-032-4/+7
|
* Use `text::Span::new` in `window_manager`Libravatar Héctor Ramón Jiménez2025-02-032-52/+27
|
* Implement basic IME selection in `Preedit` overlayLibravatar Héctor Ramón Jiménez2025-02-035-43/+181
|
* Clamp pre-edit inside viewport boundsLibravatar Héctor Ramón Jiménez2025-02-032-14/+37
|
* Track pre-edits separately from focus in text inputsLibravatar Héctor Ramón Jiménez2025-02-033-23/+17
|
* Add neutral `None` variant to `InputMethod`Libravatar Héctor Ramón Jiménez2025-02-024-9/+19
|
* Refactor and simplify `input_method` APILibravatar Héctor Ramón Jiménez2025-02-0219-470/+538
|
* Copy `winit` docs for `input_method::Event`Libravatar Héctor Ramón Jiménez2025-02-022-13/+68
|
* Run `cargo fmt` and fix lintsLibravatar Héctor Ramón Jiménez2025-02-023-23/+17
|
* Draft `input_method` supportLibravatar KENZ2025-02-0213-27/+420
|
* Avoid sharing `State` when re-parsing `markdown` sectionsLibravatar Héctor Ramón Jiménez2025-02-021-6/+8
|
* Fix broken references when parsing `markdown` streamsLibravatar Héctor Ramón Jiménez2025-02-024-15/+103
|
* Fix infinite runtime loop when queue redraws at a specific timeLibravatar Héctor Ramón Jiménez2025-02-022-40/+62
|
* Fix imprecise documentation in `Pop::on_show`Libravatar Héctor Ramón Jiménez2025-02-021-1/+1
|
* Add `on_resize` handler to `pop` widget :tada:Libravatar Héctor Ramón Jiménez2025-02-022-9/+36
|
* Merge pull request #2769 from rotmh/patch-1Libravatar Héctor2025-02-011-0/+46
|\ | | | | Add a flake for a dev shell
| * Add a flake for a dev shellLibravatar Rotem Horesh2025-01-301-0/+46
| |
* | Write documentation for `markdown::Content`Libravatar Héctor Ramón Jiménez2025-02-011-1/+10
| |
* | Add `horizontal` helper to `scrollable`Libravatar Héctor Ramón Jiménez2025-02-011-0/+5
| |
* | Merge pull request #2776 from iced-rs/fix/markdownLibravatar Héctor2025-02-0111-169/+548
|\ \ | |/ |/| Incremental `markdown` parsing and various fixes
| * Revert automatic horizontal scroll in `scrollable`Libravatar Héctor Ramón Jiménez2025-02-011-7/+1
| |
| * Propagate mouse cursor movements in `stack`Libravatar Héctor Ramón Jiménez2025-02-011-1/+6
| |
| * Fix event capturing in `rich_text`Libravatar Héctor Ramón Jiménez2025-02-011-2/+4
| |
| * Fix `rich_text` reactive rendering when hovering linksLibravatar Héctor Ramón Jiménez2025-02-011-61/+52
| |
| * Split code blocks into multiple `rich_text` linesLibravatar Héctor Ramón Jiménez2025-02-011-10/+12
| | | | | | | | This improves layout diffing considerably!
| * Cull out of bounds `rich_text` during `draw`Libravatar Héctor Ramón Jiménez2025-02-011-0/+4
| |
| * Fix `viewport` when using nested `scrollable`sLibravatar Héctor Ramón Jiménez2025-02-011-6/+6
| |
| * Discard `markdown::Highlighter` if language changesLibravatar Héctor Ramón Jiménez2025-02-011-0/+5
| |
| * Add `new` constructor for `markdown::Content`Libravatar Héctor Ramón Jiménez2025-01-312-6/+6
| |
| * Replace `println` with `log` calls in `markdown` moduleLibravatar Héctor Ramón Jiménez2025-01-313-3/+9
| |
| * Implement `markdown` incremental code highlightingLibravatar Héctor Ramón Jiménez2025-01-313-104/+264
| |
| * Draft incremental `markdown` parsingLibravatar Héctor Ramón Jiménez2025-01-313-29/+168
| | | | | | | | | | Specially useful when dealing with long Markdown streams, like LLMs.
| * Add `min_height` and `max_height` to `text_editor`Libravatar Héctor Ramón Jiménez2025-01-301-4/+26
| |
| * Use `Into<Id>` for `scrollable::Id` argumentsLibravatar Héctor Ramón Jiménez2025-01-301-8/+19
| |
| * Avoid capturing mouse press when `text_editor` is unfocusedLibravatar Héctor Ramón Jiménez2025-01-301-2/+4
| |
| * Use `Into<Id>` for `container::Id` argumentsLibravatar Héctor Ramón Jiménez2025-01-301-3/+11
| |
| * Let `markdown::view` be `Shrink` when no code blocks existLibravatar Héctor Ramón Jiménez2025-01-301-1/+1
| |
| * Make `spacing` configurable in `markdown::Settings`Libravatar Héctor Ramón Jiménez2025-01-301-8/+27
| |
| * Fix code block merging with previous spans in `markdown` widgetLibravatar Héctor Ramón Jiménez2025-01-301-1/+10
|/
* Update dependencies in `Cargo.lock`Libravatar Héctor Ramón Jiménez2025-01-291-71/+104
|
* Merge pull request #2764 from iced-rs/wasm/enable-animationLibravatar Héctor2025-01-293-12/+5
|\ | | | | Enable `animation` module for Wasm target
| * Enable `animation` module for Wasm targetLibravatar Héctor Ramón Jiménez2025-01-293-12/+5
|/
* Merge pull request #2758 from airstrike/mouse-transformationLibravatar Héctor2025-01-282-2/+32
|\ | | | | Implement `Mul<Transformation>` for `mouse::Cursor` and `mouse::Click`
| * Move cursor `Transformation` to `mouse::cursor` moduleLibravatar Andy Terra2025-01-282-15/+16
| |
| * Implement `Mul<Transformation>` for `mouse::Click`Libravatar Andy Terra2025-01-271-1/+16
| |
| * Implement `Mul<Transformation>` for `mouse::Cursor`Libravatar Andy Terra2025-01-271-0/+14
| |
* | Merge pull request #2761 from rhysd/replace-directories-nextLibravatar Héctor2025-01-283-40/+66
|\ \ | | | | | | Replace unmaintained `directories-next` crate with `directories` crate
| * | Replace unmaintained `directories-next` crate with `directories` crateLibravatar rhysd2025-01-293-40/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [`directories-next`][1] crate is no longer maintained and [`directories`][2] crate is still maintained. `directories-next` had been forked from `directories` but it died because the original `directories` crate revived the maintenance. [1]: https://crates.io/crates/directories-next [2]: https://crates.io/crates/directories
* | | Merge pull request #2760 from rhysd/remove-winapiLibravatar Héctor2025-01-283-5/+0
|\ \ \ | |/ / |/| | Remove unused `winapi` crate from dependencies