summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix intra-doc broken linksLibravatar Héctor Ramón Jiménez2023-10-273-4/+2
|
* Implement missing debug implementations in `iced_widget`Libravatar Héctor Ramón Jiménez2023-10-272-1/+18
|
* Write documentation for the new text APIsLibravatar Héctor Ramón Jiménez2023-10-2716-22/+185
|
* Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-27109-413/+370
|\
| * Run `cargo update` before `cargo audit` in `audit` workflowLibravatar Héctor Ramón Jiménez2023-10-221-0/+2
| |
| * Merge pull request #2000 from ids1024/performLibravatar Héctor Ramón2023-10-192-7/+4
| |\ | | | | | | Fix `Command<T>::perform` to return a `Command<T>`
| | * Fix lint in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-10-181-4/+1
| | |
| | * Fix `Command<T>::perform` to return a `Command<T>`Libravatar Ian Douglas Scott2023-10-181-3/+3
| |/ | | | | | | | | | | | | This seems like clearly the correct thing to do here. If the type bound on `Command` isn't specified, it makes no difference, since the generic is inferred in a way that works with either definition. But this is important if `Command<T>` is aliased with a concrete type.
| * Fix `cargo nitpick` aliasLibravatar Héctor Ramón Jiménez2023-09-201-0/+1
| |
| * Centralize `clippy` lints in `.cargo/config.toml`Libravatar Héctor Ramón Jiménez2023-09-2013-81/+16
| |
| * Simplify `map` call in `iced_wgpu::triangle`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| |
| * Revert "Chore: Apply clippy map transformations"Libravatar Héctor Ramón Jiménez2023-09-207-10/+15
| | | | | | | | This reverts commit c997aad85d7ee6e77085e50e5e599002549d228f.
| * Fix `build` workflow in GitHub CILibravatar Héctor Ramón Jiménez2023-09-201-1/+0
| |
| * Merge pull request #2096 from iced-rs/fix/some-more-lintsLibravatar Héctor Ramón2023-09-2080-257/+291
| |\ | | | | | | Fix some `clippy::pedantic` lints
| | * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| | |
| | * Fix `clippy::unused_async`Libravatar Héctor Ramón Jiménez2023-09-203-12/+22
| | |
| | * Fix `clippy::manual_let_else`Libravatar Héctor Ramón Jiménez2023-09-207-24/+15
| | |
| | * Fix `clippy::filter_map_next`Libravatar Héctor Ramón Jiménez2023-09-202-15/+15
| | |
| | * Fix `clippy::unreadable_literal`Libravatar Héctor Ramón Jiménez2023-09-203-10/+15
| | |
| | * Fix `clippy::redundant-closure-for-method-calls`Libravatar Héctor Ramón Jiménez2023-09-203-4/+6
| | |
| | * Fix `clippy::match-wildcard-for-single-variants`Libravatar Héctor Ramón Jiménez2023-09-207-11/+41
| | |
| | * Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-2019-28/+30
| | |
| | * Fix `clippy::trivially-copy-pass-by-ref`Libravatar Héctor Ramón Jiménez2023-09-206-55/+48
| | |
| | * Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-2046-108/+108
| | |
| | * Create `cargo lint` aliasLibravatar Héctor Ramón Jiménez2023-09-203-2/+3
| |/
| * Merge pull request #2092 from nyurik/clippyLibravatar Héctor Ramón2023-09-197-19/+13
| |\ | | | | | | Chore: Apply some minor clippy fixes
| | * Chore: Apply some minor clippy fixesLibravatar Yuri Astrakhan2023-09-197-19/+13
| | | | | | | | | | | | | | | | | | * Use `.elapsed()` for duration * Use direct iteration without calling `.iter()` and the like * order fields in the `Text` struct creation as declared
| * | Merge pull request #2091 from nyurik/docsLibravatar Héctor Ramón2023-09-196-7/+7
| |\ \ | | | | | | | | Chore: Apply clippy docs keyword quoting
| | * | Chore: Apply clippy docs keyword quotingLibravatar Yuri Astrakhan2023-09-196-7/+7
| | |/ | | | | | | | | | Add quotes a number of doc strings like `sRGB`
| * | Merge pull request #2090 from nyurik/mappingLibravatar Héctor Ramón2023-09-197-15/+10
| |\ \ | | | | | | | | Chore: Apply clippy map transformations
| | * | Chore: Apply clippy map transformationsLibravatar Yuri Astrakhan2023-09-197-15/+10
| | |/ | | | | | | | | | Convert `.map().unwrap_or()` to `.map_or()` and similar transformations.
| * | Merge pull request #2089 from nyurik/inlinefmtLibravatar Héctor Ramón2023-09-1913-30/+25
| |\ \ | | |/ | |/| Chore: Inline format args for ease of reading
| | * Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-1913-30/+25
| |/ | | | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
| * Merge pull request #2084 from iced-rs/fix/horizontal-scrollbar-widthLibravatar Héctor Ramón2023-09-142-12/+12
| |\ | | | | | | Fix width of horizontal scrollbar in `Scrollable`
| | * Fix `height` of vertical scroller in `Scrollbar`Libravatar Héctor Ramón Jiménez2023-09-141-4/+4
| | |
| | * Fix styling of horizontal scrollbar in `scrollable` exampleLibravatar Héctor Ramón Jiménez2023-09-141-2/+2
| | |
| | * Fix width of horizontal scrollbar in `Scrollable`Libravatar Héctor Ramón Jiménez2023-09-141-6/+6
| |/
* | Add `text` helper method for `text_editor::Content`Libravatar Héctor Ramón Jiménez2023-09-222-18/+22
| |
* | Remove `patch.crates-io` section for `cosmic-text` in `Cargo.toml`Libravatar Héctor Ramón Jiménez2023-09-221-6/+2
| |
* | Fix selection clipping out of bounds in `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-221-24/+33
| |
* | Fix vertical scroll for `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-211-2/+3
| |
* | Scroll at least one line on macOS in `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-211-1/+5
| |
* | Round `ScrollDelta::Lines` in `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-211-1/+1
| |
* | Remove `rangemap` patch in `Cargo.toml`Libravatar Héctor Ramón Jiménez2023-09-211-4/+0
| |
* | Scroll `TextEditor` only if `cursor.is_over(bounds)`Libravatar Héctor Ramón Jiménez2023-09-201-1/+3
| |
* | Introduce more themes to `iced_highlighter`Libravatar Héctor Ramón Jiménez2023-09-202-8/+33
| |
* | Fix `clippy` lints in `iced_highlighter`Libravatar Héctor Ramón Jiménez2023-09-201-3/+3
| |
* | Fix gamma correction for colored glyphs in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-09-194-15/+44
| |
* | Draw colored glyphs in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-09-191-1/+7
| |
* | Reuse syntaxes and themes lazily in `iced_highlighter`Libravatar Héctor Ramón Jiménez2023-09-192-26/+26
| |