summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix `clippy` lints :crab:Libravatar Héctor Ramón Jiménez2023-11-143-7/+7
| |
| * Update `wgpu` in `custom_shader` exampleLibravatar Héctor Ramón Jiménez2023-11-142-8/+17
| |
| * Added support for custom shader widget for iced_wgpu backend.Libravatar Bingus2023-11-1420-0/+1620
| |
| * Add missing `'static` lifetimes to constant slicesLibravatar Héctor Ramón Jiménez2023-11-123-3/+4
| |
| * Refactor texture image filteringLibravatar Héctor Ramón Jiménez2023-11-111-7/+37
| | | | | | | | | | | | - Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer`
| * Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-271-1/+3
| |\
| | * Update `wgpu` to `0.18` and `cosmic-text` to `0.10`Libravatar Héctor Ramón Jiménez2023-10-271-1/+3
| | |
| * | Write documentation for the new text APIsLibravatar Héctor Ramón Jiménez2023-10-271-5/+5
| | |
| * | Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-2723-90/+76
| |\|
| | * Fix lint in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-10-181-4/+1
| | |
| | * Revert "Chore: Apply clippy map transformations"Libravatar Héctor Ramón Jiménez2023-09-202-5/+6
| | | | | | | | | | | | This reverts commit c997aad85d7ee6e77085e50e5e599002549d228f.
| | * 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-202-11/+20
| | |
| | * Fix `clippy::manual_let_else`Libravatar Héctor Ramón Jiménez2023-09-206-22/+9
| | |
| | * Fix `clippy::match-wildcard-for-single-variants`Libravatar Héctor Ramón Jiménez2023-09-202-3/+3
| | |
| | * Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-207-11/+13
| | |
| | * Fix `clippy::trivially-copy-pass-by-ref`Libravatar Héctor Ramón Jiménez2023-09-202-19/+12
| | |
| | * Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-205-5/+5
| | |
| | * Merge pull request #2092 from nyurik/clippyLibravatar Héctor Ramón2023-09-192-2/+2
| | |\ | | | | | | | | Chore: Apply some minor clippy fixes
| | | * Chore: Apply some minor clippy fixesLibravatar Yuri Astrakhan2023-09-192-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | * 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 #2090 from nyurik/mappingLibravatar Héctor Ramón2023-09-192-6/+5
| | |\ \ | | | | | | | | | | Chore: Apply clippy map transformations
| | | * | Chore: Apply clippy map transformationsLibravatar Yuri Astrakhan2023-09-192-6/+5
| | | |/ | | | | | | | | | | | | Convert `.map().unwrap_or()` to `.map_or()` and similar transformations.
| | * / Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-195-12/+10
| | |/ | | | | | | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
| | * Fix styling of horizontal scrollbar in `scrollable` exampleLibravatar Héctor Ramón Jiménez2023-09-141-2/+2
| | |
| * | Add `text` helper method for `text_editor::Content`Libravatar Héctor Ramón Jiménez2023-09-221-18/+1
| | |
| * | Introduce more themes to `iced_highlighter`Libravatar Héctor Ramón Jiménez2023-09-201-1/+5
| | |
| * | Remove `syntect` dependency from `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-191-1/+0
| | |
| * | Introduce new `iced_highlighter` subcrateLibravatar Héctor Ramón Jiménez2023-09-192-238/+15
| | |
| * | Save file on `Cmd+S` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-191-1/+14
| | |
| * | Simplify `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-191-6/+6
| | |
| * | Use `Font::MONOSPACE` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-181-1/+1
| | |
| * | Remove unnecessary `monospaced` flag in `Font`Libravatar Héctor Ramón Jiménez2023-09-181-4/+1
| | |
| * | Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-09-181-4/+4
| | |
| * | Flesh out the `editor` example a bit moreLibravatar Héctor Ramón Jiménez2023-09-183-26/+269
| | |
| * | Implement theme selector in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-181-19/+82
| | |
| * | Fix unnecessary dereference in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-171-1/+1
| | |
| * | Implement syntax highlighting cache in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-171-25/+42
| | |
| * | Implement basic syntax highlighting with `syntect` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-172-2/+170
| | |
| * | Implement `Copy` and `Paste` actions for `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-161-1/+1
| | |
| * | Use `Theme::Dark` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-131-1/+5
| | |
| * | Draft `Editor` API and `TextEditor` widgetLibravatar Héctor Ramón Jiménez2023-09-122-0/+59
| |/
| * Fix Wasm build of `todos` exampleLibravatar Héctor Ramón Jiménez2023-09-101-0/+1
| |
| * Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-1080-238/+372
| |\
| | * Change init_with_level to init in examplesLibravatar Thomas2023-09-094-4/+2
| | |
| | * Dont use tracing-subscriber dependency on webLibravatar Thomas2023-09-091-0/+1
| | |
| | * Add instructions to run web examplesLibravatar Thomas2023-09-092-1/+16
| | |
| | * Add logging for web in tour exampleLibravatar Thomas2023-09-092-0/+12
| | |
| | * Add webgl feature for web examplesLibravatar Thomas2023-09-094-0/+14
| | |
| | * Use `Radians` as a number directly in `gradient` exampleLibravatar Héctor Ramón Jiménez2023-09-081-13/+9
| | |
| | * Remove unnecessary centering in `gradient` exampleLibravatar Héctor Ramón Jiménez2023-09-071-2/+0
| | |