summaryrefslogtreecommitdiffstats
path: root/core (follow)
Commit message (Expand)AuthorAgeFilesLines
* Update `winit` to `0.29.4`Libravatar Héctor Ramón Jiménez2023-12-154-18/+13
* Merge pull request #1964 from bungoboingo/feat/multi-window-supportLibravatar Héctor Ramón2023-12-0514-22/+269
|\
| * Use `AtomicU64` for `window::Id`Libravatar Héctor Ramón Jiménez2023-12-022-23/+23
| * Use actual floats for logical coordinatesLibravatar Héctor Ramón Jiménez2023-11-304-32/+61
| * Use `workspace` dependency for `raw-window-handle`Libravatar Héctor Ramón Jiménez2023-11-291-2/+2
| * Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-2936-281/+1035
| |\
| * | Moved `exit_on_close_request` to window settings. This now controls whether e...Libravatar Bingus2023-07-242-3/+11
| * | refactored window storage;Libravatar Bingus2023-07-2110-30/+120
| * | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-07-1255-59/+4982
| |\ \
* | | | Rename `viewport` to `clip_bounds`Libravatar Héctor Ramón Jiménez2023-12-022-6/+6
* | | | Clip text to `viewport` bounds instead of layout boundsLibravatar Héctor Ramón Jiménez2023-12-013-2/+11
| |_|/ |/| |
* | | Fix `Overlay` compositionLibravatar Héctor Ramón Jiménez2023-11-213-9/+23
* | | Refactor texture image filteringLibravatar Héctor Ramón Jiménez2023-11-111-33/+16
* | | Fix clippy + fmtLibravatar Remmirad2023-11-111-1/+1
* | | Implement texture filtering optionsLibravatar Remmirad2023-11-111-0/+32
* | | Migrate twox-hash -> xxhash_rust. Switch to Xxh3 for better performance.Libravatar dtzxporter2023-11-112-3/+4
* | | Fix intra-doc broken linksLibravatar Héctor Ramón Jiménez2023-10-271-1/+1
* | | Write documentation for the new text APIsLibravatar Héctor Ramón Jiménez2023-10-275-7/+79
* | | Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-2715-34/+28
|\ \ \
| * | | Centralize `clippy` lints in `.cargo/config.toml`Libravatar Héctor Ramón Jiménez2023-09-201-6/+0
| * | | Revert "Chore: Apply clippy map transformations"Libravatar Héctor Ramón Jiménez2023-09-201-1/+3
| * | | Fix `clippy::trivially-copy-pass-by-ref`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| * | | Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-2010-23/+23
| * | | Merge pull request #2092 from nyurik/clippyLibravatar Héctor Ramón2023-09-192-2/+2
| |\ \ \
| | * | | Chore: Apply some minor clippy fixesLibravatar Yuri Astrakhan2023-09-192-2/+2
| * | | | Merge pull request #2091 from nyurik/docsLibravatar Héctor Ramón2023-09-192-2/+2
| |\ \ \ \
| | * | | | Chore: Apply clippy docs keyword quotingLibravatar Yuri Astrakhan2023-09-192-2/+2
| | |/ / /
| * / / / Chore: Apply clippy map transformationsLibravatar Yuri Astrakhan2023-09-191-3/+1
| |/ / /
* | | | Fix gamma correction for colored glyphs in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-09-191-0/+20
* | | | Introduce new `iced_highlighter` subcrateLibravatar Héctor Ramón Jiménez2023-09-191-1/+10
* | | | Implement `Scroll` action in `text::editor`Libravatar Héctor Ramón Jiménez2023-09-191-0/+1
* | | | Remove unnecessary `monospaced` flag in `Font`Libravatar Héctor Ramón Jiménez2023-09-181-4/+0
* | | | Flesh out the `editor` example a bit moreLibravatar Héctor Ramón Jiménez2023-09-182-0/+12
* | | | Implement theme selector in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-181-2/+5
* | | | Notify `Highlighter` of topmost line changeLibravatar Héctor Ramón Jiménez2023-09-171-2/+7
* | | | Implement basic syntax highlighting with `syntect` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-171-1/+1
* | | | Draft `Highlighter` APILibravatar Héctor Ramón Jiménez2023-09-174-0/+78
* | | | Avoid drag on double or triple click for now in `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-161-0/+4
* | | | Implement `Copy` and `Paste` actions for `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-161-1/+4
* | | | Implement methods to query the contents of a `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-162-0/+18
* | | | Fix broken intra-doc linksLibravatar Héctor Ramón Jiménez2023-09-141-0/+2
* | | | Remove `Editor::min_bounds` and use `bounds` insteadLibravatar Héctor Ramón Jiménez2023-09-142-18/+0
* | | | Handle motions when a selection is present in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-0/+23
* | | | Introduce `Motion` concept in `core::text::editor`Libravatar Héctor Ramón Jiménez2023-09-131-8/+30
* | | | Add `Enter` variant to `Action` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-121-0/+1
* | | | Draft `Editor` API and `TextEditor` widgetLibravatar Héctor Ramón Jiménez2023-09-126-83/+209
* | | | Make `FontSystem` global and simplify `Paragraph` APILibravatar Héctor Ramón Jiménez2023-09-113-110/+37
|/ / /
* | | Fix (more) broken intradoc linksLibravatar Héctor Ramón Jiménez2023-09-101-1/+1
* | | Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-107-34/+76
|\ \ \
| * | | Fix outstanding broken intradoc linksLibravatar Héctor Ramón Jiménez2023-09-091-2/+0