Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-05 | Converge `Command` types from `iced_futures` and `iced_native` | 1 | -70/+0 | ||
2023-01-26 | Annotate `Command` and `Subscription` with `#[must_use]` | 1 | -0/+1 | ||
Calling a function returning one of these types without using it is almost certainly a mistake. Luckily Rust's `#[must_use]` can help warn about this. | |||||
2022-08-17 | Use `FnOnce` in `Command::perform` | 1 | -1/+1 | ||
... and revert `FnMut` usage. | |||||
2022-08-12 | Relax `Fn` trait bounds in `Command` & `Action` | 1 | -1/+1 | ||
2022-04-30 | Fix broken intra-doc links in documentation | 1 | -1/+1 | ||
2021-09-02 | Hide implementation details of `Command` in `iced_futures` | 1 | -0/+69 | ||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -138/+0 | ||
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 | -17/+0 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-04-25 | Use `Rc` in `Command::map` for Wasm | 1 | -1/+1 | ||
2020-04-25 | #321 cargo fmt | 1 | -5/+1 | ||
2020-04-25 | #321 Fix async examples by feature-gating Command implementations + Add ↵ | 1 | -0/+56 | ||
pokedex example in CI so that at least one async example is runned on CI | |||||
2020-04-02 | Fix missing link in `Command` documentation | 1 | -0/+1 | ||
2020-03-26 | Simplify `iced_futures::Command` implementation | 1 | -8/+99 | ||
2020-02-05 | Drop `Send` in `Command` and `Executor` on Wasm | 1 | -97/+8 | ||
2020-01-19 | Create `iced_futures` and wire everything up | 1 | -0/+0 | ||
2020-01-16 | Take `IntoIterator` instead of `Iterator` | 1 | -2/+5 | ||
2019-12-28 | Fix `Command::batch` documentation | 1 | -1/+1 | ||
2019-12-19 | Implement `Command::map` | 1 | -0/+25 | ||
2019-12-14 | Write docs for subscriptions and reorganize a bit | 1 | -2/+2 | ||
2019-11-22 | Write docs for `iced` and `iced_native` | 1 | -1/+1 | ||
2019-11-18 | Write documentation for `iced_core` | 1 | -0/+23 | ||
2019-11-18 | Rename `Command::attempt` to `Command::perform` | 1 | -1/+1 | ||
2019-11-17 | Implement future-based `Command` in `iced_core` | 1 | -0/+49 | ||