Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce `Image` struct in `core::image` | 2024-08-04 | 19 | -334/+184 | |
| | |||||
* | Fix broken imports in `iced_renderer` | 2024-08-04 | 1 | -5/+7 | |
| | |||||
* | Increase Earth's spin a bit in `solar_system` example | 2024-08-04 | 1 | -1/+1 | |
| | |||||
* | Remove unnecessary `with_save` calls in `solar_system` example | 2024-08-04 | 1 | -25/+21 | |
| | |||||
* | Showcase `canvas` image support in `solar_system` example | 2024-08-04 | 5 | -23/+41 | |
| | |||||
* | Implement image support for `canvas` widget | 2024-08-04 | 16 | -29/+485 | |
| | |||||
* | Render text on top of images by default | 2024-08-03 | 3 | -35/+35 | |
| | |||||
* | Implement `From<&Handle>` for `image::Handle` | 2024-08-03 | 3 | -20/+36 | |
| | |||||
* | Plug `received_url` in `winit::program` | 2024-08-01 | 1 | -0/+17 | |
| | |||||
* | Return `window::Id` in `window::open` | 2024-07-30 | 3 | -10/+17 | |
| | |||||
* | Expose additional `subscription` types in `advanced` | 2024-07-30 | 1 | -1/+2 | |
| | |||||
* | Reintroduce `Scrollable::with_direction` | 2024-07-30 | 1 | -1/+9 | |
| | |||||
* | Avoid exiting when a window is being opened | 2024-07-30 | 1 | -9/+12 | |
| | | | | Fixes #2532 | ||||
* | Merge pull request #2531 from iced-rs/fix/snap-quad-lines-in-wgpu | 2024-07-29 | 1 | -2/+11 | |
|\ | | | | | Snap `Quad` lines to the pixel grid in `iced_wgpu` | ||||
| * | Snap `Quad` lines to the pixel grid in `iced_wgpu` | 2024-07-29 | 1 | -2/+11 | |
|/ | |||||
* | Simplify `focus` method in `text_editor` | 2024-07-29 | 1 | -7/+1 | |
| | |||||
* | Implement blinking cursor for `text_editor` | 2024-07-29 | 2 | -28/+90 | |
| | |||||
* | Fix unused `core` import in `text_editor` module | 2024-07-29 | 1 | -2/+2 | |
| | |||||
* | Simplify `highlight` method for `text_editor` widget | 2024-07-28 | 3 | -23/+31 | |
| | |||||
* | Enable Markdown highlighting in `markdown` example | 2024-07-28 | 2 | -19/+18 | |
| | |||||
* | Merge pull request #2528 from iced-rs/feature/rich-text-strikethrough | 2024-07-28 | 3 | -28/+73 | |
|\ | | | | | Strikethrough support for `rich_text` | ||||
| * | Implement `strikethrough` support for `rich_text` spans | 2024-07-28 | 3 | -28/+73 | |
|/ | |||||
* | Merge pull request #2526 from iced-rs/feature/rich-text-underline | 2024-07-28 | 2 | -21/+79 | |
|\ | | | | | Underline support for `rich_text` | ||||
| * | Make `underline` positioning aware of `line_height` | 2024-07-28 | 1 | -6/+10 | |
| | | |||||
| * | Underline `rich_text` links when hovered | 2024-07-28 | 2 | -6/+11 | |
| | | |||||
| * | Implement `underline` support for `rich_text` spans | 2024-07-28 | 3 | -22/+71 | |
|/ | |||||
* | Merge pull request #2516 from tarkah/feat/span-background | 2024-07-28 | 7 | -7/+201 | |
|\ | | | | | Add background styling to span / rich text | ||||
| * | Remove comment in `text::Rich::draw` | 2024-07-28 | 1 | -1/+0 | |
| | | |||||
| * | Use `for` loop instead of `fold` in `span_bounds` | 2024-07-28 | 1 | -29/+29 | |
| | | |||||
| * | Make `markdown::parse` take a `Palette` value | 2024-07-28 | 2 | -6/+6 | |
| | | |||||
| * | Add `padding` to `text::Span` | 2024-07-28 | 4 | -12/+57 | |
| | | |||||
| * | Improve ergonomics of `span` background highlighting | 2024-07-28 | 3 | -35/+63 | |
| | | |||||
| * | Use dark background for inline code in `markdown` widget | 2024-07-28 | 2 | -13/+10 | |
| | | |||||
| * | Add background styling to span / rich text | 2024-07-28 | 7 | -16/+141 | |
|/ | |||||
* | Use `container::dark` style for `markdown` code blocks | 2024-07-27 | 1 | -1/+1 | |
| | |||||
* | Merge pull request #2522 from iced-rs/text-editor-keybindings | 2024-07-27 | 1 | -115/+266 | |
|\ | | | | | Custom key binding support for `text_editor` | ||||
| * | Reduce `KeyPress` duplication in `text_editor` | 2024-07-26 | 1 | -12/+9 | |
| | | |||||
| * | Implement custom key binding support for `text_editor` | 2024-07-26 | 1 | -118/+272 | |
|/ | |||||
* | Fix lints for Rust 1.80 | 2024-07-26 | 8 | -15/+15 | |
| | |||||
* | Fix broken doc link in `text_editor` | 2024-07-24 | 1 | -1/+1 | |
| | |||||
* | Add `placeholder` support to `text_editor` widget | 2024-07-24 | 5 | -9/+68 | |
| | |||||
* | Fix macOS race condition when closing window | 2024-07-24 | 1 | -9/+11 | |
| | |||||
* | Depend on `wasm-bindgen-futures` only for Wasm | 2024-07-24 | 1 | -2/+1 | |
| | | | | Fixes #2518 | ||||
* | Exit runtime with `control_sender` instead of `break` | 2024-07-24 | 1 | -2/+6 | |
| | |||||
* | Unify `Link` and `Message` generics in `text::Rich` | 2024-07-24 | 4 | -72/+29 | |
| | |||||
* | Fix mssing `Link` generic in `From` impl for `Span` | 2024-07-23 | 1 | -1/+1 | |
| | |||||
* | Fix `span` widget helper missing `Link` generic | 2024-07-23 | 1 | -2/+2 | |
| | |||||
* | Use horizontal `scrollable` for code blocks in `markdown` widget | 2024-07-21 | 1 | -6/+16 | |
| | |||||
* | Introduce `markdown::Settings` | 2024-07-21 | 4 | -42/+151 | |
| | |||||
* | Use `url` for `markdown` links | 2024-07-21 | 4 | -9/+24 | |
| |