summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | | | | | Implement theme selector in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-183-22/+99
| * | | | | | | | | | | | Update `version` properly when `FontSystem` changes in `text::editor`Libravatar Héctor Ramón Jiménez2023-09-181-0/+3
| * | | | | | | | | | | | Fix inconsistent `expect` messages in `text::editor`Libravatar Héctor Ramón Jiménez2023-09-181-3/+3
| * | | | | | | | | | | | Shape as needed only in `update` during `layout`Libravatar Héctor Ramón Jiménez2023-09-181-4/+2
| * | | | | | | | | | | | Find correct `last_visible_line` in `Editor::highlight`Libravatar Héctor Ramón Jiménez2023-09-181-5/+21
| * | | | | | | | | | | | Fix unnecessary dereference in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-171-1/+1
| * | | | | | | | | | | | Avoid adding unnecessary spans when syntax highlightingLibravatar Héctor Ramón Jiménez2023-09-172-12/+14
| * | | | | | | | | | | | Implement syntax highlighting cache in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-172-25/+46
| * | | | | | | | | | | | Notify `Highlighter` of topmost line changeLibravatar Héctor Ramón Jiménez2023-09-173-31/+61
| * | | | | | | | | | | | Use `saturating_sub` for `last_visible_line` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-171-2/+3
| * | | | | | | | | | | | Implement basic syntax highlighting with `syntect` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-175-6/+211
| * | | | | | | | | | | | Draft `Highlighter` APILibravatar Héctor Ramón Jiménez2023-09-1710-19/+218
| * | | | | | | | | | | | Remove unnecessary `into_iter` call in `graphics::text`Libravatar Héctor Ramón Jiménez2023-09-161-5/+4
| * | | | | | | | | | | | Avoid drag on double or triple click for now in `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-162-24/+32
| * | | | | | | | | | | | Use fork of `cosmic-text` with some minor fixesLibravatar Héctor Ramón Jiménez2023-09-162-35/+5
| * | | | | | | | | | | | Implement `Copy` and `Paste` actions for `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-164-5/+24
| * | | | | | | | | | | | Implement methods to query the contents of a `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-164-0/+107
| * | | | | | | | | | | | Fix `Copy` action being triggered without any modifiersLibravatar Héctor Ramón Jiménez2023-09-141-1/+3
| * | | | | | | | | | | | Fix broken intra-doc linksLibravatar Héctor Ramón Jiménez2023-09-142-0/+4
| * | | | | | | | | | | | Remove `min_bounds` field in `graphics::text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-17/+0
| * | | | | | | | | | | | Remove `Editor::min_bounds` and use `bounds` insteadLibravatar Héctor Ramón Jiménez2023-09-145-24/+2
| * | | | | | | | | | | | Implement `Action::SelectLine` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-1/+18
| * | | | | | | | | | | | Implement `Action::SelectWord` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-142-1/+61
| * | | | | | | | | | | | Implement motion selection in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-1/+20
| * | | | | | | | | | | | Handle motions when a selection is present in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-142-23/+70
| * | | | | | | | | | | | Fix `Cursor::Caret` position on lines that wrap on whitespaceLibravatar Héctor Ramón Jiménez2023-09-141-2/+12
| * | | | | | | | | | | | Fix scrolling offset for `Cursor::Selection`Libravatar Héctor Ramón Jiménez2023-09-141-43/+31
| * | | | | | | | | | | | Fix unused import in `iced_renderer`Libravatar Héctor Ramón Jiménez2023-09-131-5/+6
| * | | | | | | | | | | | Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-09-133-22/+41
| * | | | | | | | | | | | Introduce `Motion` concept in `core::text::editor`Libravatar Héctor Ramón Jiménez2023-09-133-65/+156
| * | | | | | | | | | | | Use `Theme::Dark` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-131-1/+5
| * | | | | | | | | | | | Unify `Focus` and `Click` updates in `widget::text_editor`Libravatar Héctor Ramón Jiménez2023-09-131-32/+16
| * | | | | | | | | | | | Implement `Cursor::Selection` calculation in `Editor::cursor`Libravatar Héctor Ramón Jiménez2023-09-132-4/+120
| * | | | | | | | | | | | Fix subline positioning in `Editor::cursor`Libravatar Héctor Ramón Jiménez2023-09-121-1/+1
| * | | | | | | | | | | | Fix cursor offset with `Affinity::After` at the end of lines in `Editor::cursor`Libravatar Héctor Ramón Jiménez2023-09-121-1/+4
| * | | | | | | | | | | | Return `Cursor::Caret` if selection matches cursor position in `Editor::cursor`Libravatar Héctor Ramón Jiménez2023-09-121-5/+8
| * | | | | | | | | | | | Add `Enter` variant to `Action` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-123-0/+3
| * | | | | | | | | | | | Draft `Editor` API and `TextEditor` widgetLibravatar Héctor Ramón Jiménez2023-09-1225-92/+1384
| * | | | | | | | | | | | Make `FontSystem` global and simplify `Paragraph` APILibravatar Héctor Ramón Jiménez2023-09-1115-329/+166
* | | | | | | | | | | | | Use upstream repository for `glyphon` dependencyLibravatar Héctor Ramón Jiménez2023-10-271-1/+1
| |_|/ / / / / / / / / / |/| | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #2122 from iced-rs/update-wgpuLibravatar Héctor Ramón2023-10-277-14/+28
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / |/| | | | | | | | | | |
| * | | | | | | | | | | Remove unnecessary `into_iter` call in `iced_graphics`Libravatar Héctor Ramón Jiménez2023-10-271-5/+4
| * | | | | | | | | | | Update `wgpu` to `0.18` and `cosmic-text` to `0.10`Libravatar Héctor Ramón Jiménez2023-10-276-9/+24
|/ / / / / / / / / / /
* | | | | | | | | | | 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 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
|/ / / / / / / / / / /
* | | | | | | | | | | 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