summaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-02-21Run `cargo fmt`Libravatar Héctor Ramón Jiménez2-10/+10
2025-02-11Replace `with` function with `Function` traitLibravatar Héctor Ramón Jiménez1-3/+3
2025-02-11Introduce `with` helper and use `sipper` in `gallery` exampleLibravatar Héctor Ramón Jiménez1-1/+1
2025-02-11Introduce `Task::map_with`Libravatar Héctor Ramón Jiménez1-0/+1
2025-02-11Rewrite `websocket` example using `sipper`Libravatar Héctor Ramón Jiménez1-1/+0
2025-02-11Export `sipper` types in `task` moduleLibravatar Héctor Ramón Jiménez1-1/+3
2025-02-04Fix documentation of `markdown` and `rich_text`Libravatar Héctor Ramón Jiménez1-3/+3
2025-01-29Enable `animation` module for Wasm targetLibravatar Héctor Ramón Jiménez1-9/+4
2025-01-27Make `animation` module only available in nativeLibravatar Héctor Ramón Jiménez1-4/+9
2025-01-27Draft basic `Animation` API in `iced_core`Libravatar Héctor Ramón Jiménez1-3/+4
2025-01-24Add `Duration` helpers to `time` moduleLibravatar Héctor Ramón Jiménez1-1/+1
2025-01-24Implement `time::repeat` and simplify `Subscription::run_with`Libravatar Héctor Ramón Jiménez1-2/+2
2025-01-14Bump image from `0.24` to `0.25`Libravatar Jos Ahrens1-2/+2
2024-12-14Support custom renderers in `iced_test` through `renderer::Headless` traitLibravatar Héctor Ramón Jiménez2-63/+2
2024-12-10Decouple `iced_test` from `iced` crateLibravatar Héctor Ramón Jiménez1-1/+0
2024-12-10Add image and hash snapshot-based testing to `iced_test`Libravatar Héctor Ramón Jiménez4-26/+23
2024-12-10Draft `iced_test` crate and test `todos` exampleLibravatar Héctor Ramón Jiménez1-0/+2
2024-09-20Move `wgpu` re-export to root moduleLibravatar Héctor Ramón Jiménez1-0/+3
This seems to fix a `cargo doc` performance issue; and it makes more sense anyways.
2024-09-18Explain `Action` pattern a bit in The Pocket GuideLibravatar Héctor Ramón Jiménez1-2/+10
2024-09-18Show `Action` pattern in The Pocket GuideLibravatar Héctor Ramón Jiménez1-2/+16
2024-09-18Implement `executor` method for `Daemon`Libravatar Héctor Ramón Jiménez1-1/+16
2024-09-18Fix order of `Program::theme` implementationLibravatar Héctor Ramón Jiménez1-8/+8
2024-09-18Import `Executor` directly from `crate`Libravatar Héctor Ramón Jiménez1-3/+3
2024-09-18Allow specifying a custom executorLibravatar mtkennerly2-0/+92
2024-07-30Expose additional `subscription` types in `advanced`Libravatar Héctor Ramón Jiménez1-1/+2
2024-07-16Remove unnecessary `derive` in "Scaling Applications" docsLibravatar Héctor Ramón Jiménez1-1/+0
2024-07-16Fix grammar in "Passive Subscriptions" docsLibravatar Héctor Ramón Jiménez1-1/+1
2024-07-16Finish "The Pocket Guide"Libravatar Héctor Ramón Jiménez1-3/+128
2024-07-16Draft "The Pocket Guide" for the API referenceLibravatar Héctor Ramón Jiménez1-129/+286
2024-07-15Make `run_with` take a `FnOnce`Libravatar Héctor Ramón Jiménez3-5/+5
2024-07-14Export `operate` constructor in `advanced::widget`Libravatar Héctor Ramón Jiménez2-9/+14
2024-07-14Implement `application::Update` for `()`Libravatar Héctor Ramón Jiménez2-2/+10
2024-07-12Improve `Padding` ergonomicsLibravatar Héctor Ramón Jiménez1-0/+1
We expose free functions for creating a `Padding` and methods with the same name to modify its fields.
2024-07-12Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez1-0/+5
2024-07-10Introduce `Task::abortable` :tada:Libravatar Héctor Ramón Jiménez1-1/+7
2024-07-09Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez3-141/+13
If you need to run a `Task` during boot, use `run_with` instead!
2024-07-05Expose `from_recipe` and `into_recipes` in `advanced::subscription`Libravatar Héctor Ramón Jiménez1-1/+1
2024-07-05Hide `Subscription` internalsLibravatar Héctor Ramón Jiménez1-8/+2
.. and introduce `stream::channel` helper
2024-06-20Inline documentation for `application` and `daemon` functionsLibravatar Héctor Ramón Jiménez1-2/+7
2024-06-20Add `window` method to `Application`Libravatar Héctor Ramón Jiménez1-1/+8
2024-06-20feat: Add methods for window settings in ApplicationLibravatar ryankopf1-0/+44
This commit adds new methods to the `Application` struct for setting various window settings such as resizable, decorations, position, and level. These methods allow for more customization and control over the appearance and behavior of the application window.
2024-06-19Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez7-1030/+949
2024-06-14Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez4-62/+57
2024-06-11Introduce `subscription::Event`Libravatar Héctor Ramón Jiménez1-2/+4
... and remove `PlatformSpecific` from `Event`
2024-05-07Update `winit` to `0.30`Libravatar Héctor Ramón Jiménez1-17/+2
2024-05-02Simplify image rotation API and its internalsLibravatar Héctor Ramón Jiménez1-2/+2
2024-05-02Add `Image` rotation supportLibravatar Héctor Ramón Jiménez1-2/+2
Co-authored-by: DKolter <68352124+DKolter@users.noreply.github.com>
2024-04-30add missing derive(Debug) in lib.rs docsLibravatar JL7101-0/+1
2024-04-19Fix typoLibravatar saihaze1-1/+1
2024-04-07Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez1-7/+0