summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Merge pull request #2795 from tarkah/fix/image-viewer-redrawLibravatar Héctor2025-02-071-0/+5
|\ | | | | Request redraw in image viewer update
| * Request redraw in image viewer updateLibravatar Cory Forsstrom2025-02-061-0/+5
|/
* Merge pull request #2786 from iced-rs/customizable-markdownLibravatar Héctor2025-02-0516-233/+877
|\ | | | | Customizable Markdown Rendering and Image Support
| * Use `code_size` instead of `spacing` for `code_block` metricsLibravatar Héctor Ramón Jiménez2025-02-051-4/+4
| |
| * Add `language` to `Item::CodeBlock` in `markdown`Libravatar Héctor Ramón Jiménez2025-02-052-17/+31
| |
| * Rename `on_link_clicked` to `on_link_click`Libravatar Héctor Ramón Jiménez2025-02-045-23/+23
| |
| * Add `Copy` action to code blocks in `markdown` exampleLibravatar Héctor Ramón Jiménez2025-02-049-12/+93
| |
| * Add `alt` and `title` to `markdown` imagesLibravatar Héctor Ramón Jiménez2025-02-042-17/+31
| |
| * Animate image fade in in `markdown` exampleLibravatar Héctor Ramón Jiménez2025-02-042-51/+104
| |
| * Fix documentation of `markdown` and `rich_text`Libravatar Héctor Ramón Jiménez2025-02-046-51/+87
| |
| * Draft `Viewer` trait for `markdown`Libravatar Héctor Ramón Jiménez2025-02-049-234/+588
| |
| * Introduce `view_with` customizers in `markdown` moduleLibravatar Héctor Ramón Jiménez2025-02-041-94/+186
| |
* | Merge pull request #2785 from rhysd/fix-placeholder-ime-posLibravatar Héctor2025-02-041-1/+7
|\ \ | |/ |/| Remove the placeholder text when IME is activated in text input
| * Remove the placeholder text when IME is activated in text inputLibravatar rhysd2025-02-051-1/+7
|/
* Merge pull request #2781 from iced-rs/event-by-referenceLibravatar Héctor2025-02-0449-155/+111
|\ | | | | Take `Event` by reference in `Widget::update`
| * Take `Event` by reference in `Widget::update`Libravatar Héctor Ramón Jiménez2025-02-0449-155/+111
| |
* | Merge pull request #2782 from edwloef/empty_meshesLibravatar Héctor2025-02-041-0/+10
|\ \ | |/ |/| don't try to draw empty meshes in wgpu
| * Add debug assertions to `draw_mesh` in `wgpu` rendererLibravatar edwloef2025-02-041-0/+10
| |
* | Update `Cargo.lock` dependenciesLibravatar Héctor Ramón Jiménez2025-02-041-9/+9
| |
* | Merge pull request #2777 from kenz-gelsoft/explore-input-method2Libravatar Héctor2025-02-0320-168/+850
|\ \ | | | | | | Input Method Support
| * | Handle pre-edits and commits only if `text_editor` is focusedLibravatar Héctor Ramón Jiménez2025-02-031-9/+10
| | |
| * | Merge branch 'master' into explore-input-method2Libravatar Héctor Ramón Jiménez2025-02-035-24/+68
| |\|
| * | Fix `InputMethod` conflicts with multiple scrollablesLibravatar Héctor Ramón Jiménez2025-02-032-28/+48
| | |
| * | Request redraws on `InputMethod` eventsLibravatar Héctor Ramón Jiménez2025-02-032-1/+9
| | |
| * | 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
| | |
* | | Merge pull request #2783 from iced-rs/dependabot/cargo/openssl-0.10.70Libravatar Héctor2025-02-031-4/+4
|\ \ \ | |_|/ |/| | Bump openssl from 0.10.69 to 0.10.70
| * | Bump openssl from 0.10.69 to 0.10.70Libravatar dependabot[bot]2025-02-031-4/+4
|/ / | | | | | | | | | | | | | | | | | | | | | | | | Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.69 to 0.10.70. - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.69...openssl-v0.10.70) --- updated-dependencies: - dependency-name: openssl dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
* | Introduce `Levitating` variant for `mouse::Cursor`Libravatar Héctor Ramón Jiménez2025-02-033-21/+45
| |
* | Ignore redraws of invisible content in `hover` widgetLibravatar Héctor Ramón Jiménez2025-02-032-3/+23
|/
* 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