Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename `iced_native` to `iced_runtime` | 2023-03-05 | 1 | -108/+0 | |
| | |||||
* | Converge `Command` types from `iced_futures` and `iced_native` | 2023-03-05 | 1 | -19/+40 | |
| | |||||
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -1/+3 | |
| | |||||
* | Annotate `Command` and `Subscription` with `#[must_use]` | 2023-01-26 | 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. | ||||
* | Use `FnOnce` in `Command::perform` | 2022-08-17 | 1 | -1/+1 | |
| | | | | ... and revert `FnMut` usage. | ||||
* | Relax `Fn` trait bounds in `Command` & `Action` | 2022-08-12 | 1 | -2/+2 | |
| | |||||
* | Draft widget operations | 2022-07-28 | 1 | -0/+10 | |
| | |||||
* | Use `MaybeSend` in `perform` and `map` for `Command` | 2022-01-28 | 1 | -3/+5 | |
| | |||||
* | Write missing docs and `Debug` implementations for `native` | 2021-09-13 | 1 | -0/+10 | |
| | |||||
* | Hide implementation details of `Command` in `iced_futures` | 2021-09-02 | 1 | -40/+25 | |
| | |||||
* | Make `Command` implementations platform-specific | 2021-09-02 | 1 | -0/+77 | |
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!) |