summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2025-02-212-10/+10
|
* Replace `with` function with `Function` traitLibravatar Héctor Ramón Jiménez2025-02-111-3/+3
|
* Introduce `with` helper and use `sipper` in `gallery` exampleLibravatar Héctor Ramón Jiménez2025-02-111-1/+1
|
* Introduce `Task::map_with`Libravatar Héctor Ramón Jiménez2025-02-111-0/+1
|
* Rewrite `websocket` example using `sipper`Libravatar Héctor Ramón Jiménez2025-02-111-1/+0
|
* Export `sipper` types in `task` moduleLibravatar Héctor Ramón Jiménez2025-02-111-1/+3
|
* Fix documentation of `markdown` and `rich_text`Libravatar Héctor Ramón Jiménez2025-02-041-3/+3
|
* Enable `animation` module for Wasm targetLibravatar Héctor Ramón Jiménez2025-01-291-9/+4
|
* Make `animation` module only available in nativeLibravatar Héctor Ramón Jiménez2025-01-271-4/+9
|
* Draft basic `Animation` API in `iced_core`Libravatar Héctor Ramón Jiménez2025-01-271-3/+4
|
* Add `Duration` helpers to `time` moduleLibravatar Héctor Ramón Jiménez2025-01-241-1/+1
|
* Implement `time::repeat` and simplify `Subscription::run_with`Libravatar Héctor Ramón Jiménez2025-01-241-2/+2
|
* Bump image from `0.24` to `0.25`Libravatar Jos Ahrens2025-01-141-2/+2
|
* Support custom renderers in `iced_test` through `renderer::Headless` traitLibravatar Héctor Ramón Jiménez2024-12-142-63/+2
|
* Decouple `iced_test` from `iced` crateLibravatar Héctor Ramón Jiménez2024-12-101-1/+0
|
* Add image and hash snapshot-based testing to `iced_test`Libravatar Héctor Ramón Jiménez2024-12-104-26/+23
|
* Draft `iced_test` crate and test `todos` exampleLibravatar Héctor Ramón Jiménez2024-12-101-0/+2
|
* Move `wgpu` re-export to root moduleLibravatar Héctor Ramón Jiménez2024-09-201-0/+3
| | | | | This seems to fix a `cargo doc` performance issue; and it makes more sense anyways.
* Merge pull request #2587 from iced-rs/improve-api-referenceLibravatar Héctor Ramón2024-09-191-4/+26
|\ | | | | Add widget examples to API reference and update `README`
| * Explain `Action` pattern a bit in The Pocket GuideLibravatar Héctor Ramón Jiménez2024-09-181-2/+10
| |
| * Show `Action` pattern in The Pocket GuideLibravatar Héctor Ramón Jiménez2024-09-181-2/+16
| |
* | Implement `executor` method for `Daemon`Libravatar Héctor Ramón Jiménez2024-09-181-1/+16
| |
* | Fix order of `Program::theme` implementationLibravatar Héctor Ramón Jiménez2024-09-181-8/+8
| |
* | Import `Executor` directly from `crate`Libravatar Héctor Ramón Jiménez2024-09-181-3/+3
| |
* | Allow specifying a custom executorLibravatar mtkennerly2024-09-182-0/+92
|/
* Expose additional `subscription` types in `advanced`Libravatar Héctor Ramón Jiménez2024-07-301-1/+2
|
* Remove unnecessary `derive` in "Scaling Applications" docsLibravatar Héctor Ramón Jiménez2024-07-161-1/+0
|
* Fix grammar in "Passive Subscriptions" docsLibravatar Héctor Ramón Jiménez2024-07-161-1/+1
|
* Finish "The Pocket Guide"Libravatar Héctor Ramón Jiménez2024-07-161-3/+128
|
* Draft "The Pocket Guide" for the API referenceLibravatar Héctor Ramón Jiménez2024-07-161-129/+286
|
* Make `run_with` take a `FnOnce`Libravatar Héctor Ramón Jiménez2024-07-153-5/+5
|
* Export `operate` constructor in `advanced::widget`Libravatar Héctor Ramón Jiménez2024-07-142-9/+14
|
* Implement `application::Update` for `()`Libravatar Héctor Ramón Jiménez2024-07-142-2/+10
|
* Improve `Padding` ergonomicsLibravatar Héctor Ramón Jiménez2024-07-121-0/+1
| | | | | We expose free functions for creating a `Padding` and methods with the same name to modify its fields.
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-121-0/+5
|
* Introduce `Task::abortable` :tada:Libravatar Héctor Ramón Jiménez2024-07-101-1/+7
|
* Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez2024-07-093-141/+13
| | | | | If you need to run a `Task` during boot, use `run_with` instead!
* Expose `from_recipe` and `into_recipes` in `advanced::subscription`Libravatar Héctor Ramón Jiménez2024-07-051-1/+1
|
* Hide `Subscription` internalsLibravatar Héctor Ramón Jiménez2024-07-051-8/+2
| | | | .. and introduce `stream::channel` helper
* Inline documentation for `application` and `daemon` functionsLibravatar Héctor Ramón Jiménez2024-06-201-2/+7
|
* Add `window` method to `Application`Libravatar Héctor Ramón Jiménez2024-06-201-1/+8
|
* feat: Add methods for window settings in ApplicationLibravatar ryankopf2024-06-201-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.
* Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-197-1030/+949
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-144-62/+57
|
* Introduce `subscription::Event`Libravatar Héctor Ramón Jiménez2024-06-111-2/+4
| | | | ... and remove `PlatformSpecific` from `Event`
* Update `winit` to `0.30`Libravatar Héctor Ramón Jiménez2024-05-071-17/+2
|
* Simplify image rotation API and its internalsLibravatar Héctor Ramón Jiménez2024-05-021-2/+2
|
* Add `Image` rotation supportLibravatar Héctor Ramón Jiménez2024-05-021-2/+2
| | | | Co-authored-by: DKolter <68352124+DKolter@users.noreply.github.com>
* add missing derive(Debug) in lib.rs docsLibravatar JL7102024-04-301-0/+1
|
* Fix typoLibravatar saihaze2024-04-191-1/+1
|