Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -1/+1 | ||
2024-06-14 | Move `Maybe*` traits back to `iced_futures` | 1 | -2/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -1/+2 | ||
2024-06-11 | Introduce `subscription::Event` | 1 | -9/+2 | ||
... and remove `PlatformSpecific` from `Event` | |||||
2024-06-10 | Introduce `window::Id` to `Event` subscriptions | 1 | -2/+8 | ||
And remove `window::Id` from `Event` altogether. | |||||
2023-11-29 | Implement `Command::run` for executing a `Stream` to completion | 1 | -1/+24 | ||
2023-09-09 | Fix majority of unresolved documentation links | 1 | -2/+3 | ||
2023-03-05 | Remove generic `Hasher` and `Event` from `subscription::Recipe` | 1 | -12/+13 | ||
2022-07-09 | Fix further `clippy` lints | 1 | -2/+0 | ||
... and explicitly annotate crates as well. | |||||
2022-04-30 | Fix broken intra-doc links in documentation | 1 | -1/+5 | ||
2022-01-28 | Introduce `MaybeSend` trait in `iced_futures` | 1 | -48/+8 | ||
It allows to clean up all the `trait_aliases` modules! | |||||
2022-01-28 | Experimental wgpu WebGL backend support | 1 | -3/+46 | ||
- Added missing `draw_cache_align_4x4` call for `brush_glyph` on wasm32 target - Added WebGL support to `integratio_wgpu` example - Fixed test.yml CI workflow - Removed spir-v shader in `integration_wgpu`; Fixed formatting - Removed redundant `BoxStream` typedef | |||||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -12/+9 | ||
This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!) | |||||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -20/+2 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-02-16 | Enter executor context only on `Recipe` creation | 1 | -3/+10 | ||
2020-02-05 | Drop `Send` in `Command` and `Executor` on Wasm | 1 | -2/+4 | ||
2020-02-04 | Support event subscriptions in `iced_web` | 1 | -12/+8 | ||
Also improves the overall web runtime, avoiding nested update loops. | |||||
2020-01-20 | Write documentation for `iced_futures` | 1 | -0/+45 | ||
2020-01-20 | Add `Application::Executor` associated type | 1 | -6/+2 | ||
2020-01-19 | Rename `Receiver` to `Sender` in `Runtime` | 1 | -12/+11 | ||
2020-01-19 | Create `iced_futures` and wire everything up | 1 | -4/+9 | ||
2020-01-19 | Implement `Runtime` and `Executor` in `iced_core` | 1 | -0/+74 | ||
They can be leveraged by shells to easily execute commands and track subscriptions. |