summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Reexport Transformation from widget::shaderLibravatar Bingus2023-11-142-1/+2
|
* Removed `Into` for Rectangle<f32> from u32Libravatar Bingus2023-11-142-12/+1
|
* Added support for custom shader widget for iced_wgpu backend.Libravatar Bingus2023-11-1437-6/+2139
|
* Merge pull request #2135 from iced-rs/ci/deny-warningsLibravatar Héctor Ramón2023-11-125-4/+7
|\ | | | | Deny warnings in `test` workflow
| * Add missing `'static` lifetimes to constant slicesLibravatar Héctor Ramón Jiménez2023-11-124-4/+5
| |
| * Deny warnings in `test` workflowLibravatar Héctor Ramón Jiménez2023-11-121-0/+2
| |
* | Merge pull request #2134 from iced-rs/fix/widget-crateLibravatar Héctor Ramón2023-11-123-20/+31
|\ \ | |/ |/| Fix standalone compilation of `iced_renderer` crate
| * Fix conditional compilation in `iced_renderer`Libravatar Héctor Ramón Jiménez2023-11-121-0/+1
| |
| * Add `check` workflow to ensure `iced_widget` crate compilesLibravatar Héctor Ramón Jiménez2023-11-122-20/+30
|/
* Merge pull request #1894 from Remmirad/texture_filteringLibravatar Héctor Ramón2023-11-1112-54/+232
|\ | | | | Add texture filtering options
| * Fix unnecessary references in `iced_wgpu::image`Libravatar Héctor Ramón Jiménez2023-11-111-3/+3
| |
| * Refactor texture image filteringLibravatar Héctor Ramón Jiménez2023-11-1112-164/+254
| | | | | | | | | | | | - Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer`
| * Remove debug tracesLibravatar Remmirad2023-11-111-2/+1
| |
| * fix design for wgpu backendLibravatar Remmirad2023-11-111-56/+77
| |
| * Fix clippy + fmtLibravatar Remmirad2023-11-114-23/+33
| |
| * Implement texture filtering optionsLibravatar Remmirad2023-11-114-26/+84
|/
* Run `sed` with `-i` option in `artifacts` jobLibravatar Héctor Ramón Jiménez2023-11-111-1/+1
|
* Fix `artifacts` job in `audit` workflowLibravatar Héctor Ramón Jiménez2023-11-111-0/+2
|
* Merge pull request #1908 from alec-deason/bug/convert_textLibravatar Héctor Ramón2023-11-112-4/+14
|\ | | | | Run convert_text on svg trees so text renders correctly
| * Call `convert_text` on `svg` node before renderingLibravatar Héctor Ramón Jiménez2023-11-112-4/+14
| | | | | | | | | | `tiny-skia` does not support text rendering, so we convert the text nodes to path nodes prior to that.
* | Merge pull request #2080 from dtzxporter/xxhash-3-speedLibravatar Héctor Ramón2023-11-116-19/+8
|\ \ | |/ |/| Migrate twox-hash -> xxhash-rust. Switch to Xxh3 for better performance.
| * Remove unnecessary `default-features` attribute from `xxhash-rust` dependencyLibravatar Héctor Ramón Jiménez2023-11-111-1/+1
| |
| * Remove patch version from `xxhash-rust` dependencyLibravatar Héctor Ramón Jiménez2023-11-111-1/+1
| |
| * Migrate twox-hash -> xxhash_rust. Switch to Xxh3 for better performance.Libravatar dtzxporter2023-11-116-19/+8
|/ | | | xxhash-rust is more maintained, built against `::core`, so no workaround for wasm is necessary. Switch to Xxh3 for better performance, which shows when loading/hashing image buffers.
* Merge pull request #2124 from iced-rs/disable-maximize-buttonLibravatar Héctor Ramón2023-10-271-0/+6
|\ | | | | Disable maximize window button if `Settings::resizable` is `false`
| * Disable maximize window button if `Settings::resizable` is `false`Libravatar Héctor Ramón Jiménez2023-10-271-0/+6
| |
* | Merge pull request #2123 from iced-rs/text-editorLibravatar Héctor Ramón2023-10-2750-418/+3136
|\ \ | |/ |/| `TextEditor` widget (or multi-line text input)
| * Improve `TextEditor` scroll interaction with a touchpadLibravatar Héctor Ramón Jiménez2023-10-271-1/+1
| |
| * Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-276-9/+24
| |\
| * | 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
| |\ \
| * | | 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
| | | |
| * | | Remove `syntect` dependency from `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-191-1/+0
| | | |
| * | | Add `iced_highlighter` to `document` workflowLibravatar Héctor Ramón Jiménez2023-09-191-0/+1
| | | |
| * | | Fix typo in `higlighter` (why is it so hard to spell?)Libravatar Héctor Ramón Jiménez2023-09-191-1/+1
| | | |
| * | | Introduce new `iced_highlighter` subcrateLibravatar Héctor Ramón Jiménez2023-09-199-260/+302
| | | |