Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Split `iced_futures` into different `backend` implementations | 2022-01-28 | 1 | -1/+1 | |
| | |||||
* | Allow Sandbox applications to exit. | 2021-12-29 | 1 | -0/+11 | |
| | |||||
* | Revert system menus support | 2021-09-15 | 1 | -1/+1 | |
| | | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`. | ||||
* | Make `Command` implementations platform-specific | 2021-09-02 | 1 | -7/+2 | |
| | | | | | | | | | 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!) | ||||
* | Force `Application::Message` to implement `Clone` | 2021-07-13 | 1 | -1/+1 | |
| | | | | | | A `Message` should represent an application event (e.g. user interactions, command results, subscription results...). Therefore, it should always consist of pure, cloneable data. | ||||
* | docs: update all 0.2 github links to 0.3 | 2021-06-14 | 1 | -11/+11 | |
| | |||||
* | Add `clipboard` argument to `Application::update` | 2021-03-11 | 1 | -2/+7 | |
| | |||||
* | update example description at sandbox's documentation (#710) | 2021-01-22 | 1 | -3/+3 | |
| | | | | | | | | | * Update sandbox.rs * Update sandbox.rs * format Co-authored-by: Diego Rosario <diegorosario2013@gmail.com> | ||||
* | Update example links to point to `0.2` branch | 2020-11-26 | 1 | -11/+11 | |
| | |||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -23/+1 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Remove `executor::Null` from the root public API | 2020-10-17 | 1 | -2/+1 | |
| | | | | | | | Using an `Application` with `executor::Null` does not make sense, as the whole purpose of an `Application` is to allow executing async actions. When async actions are not needed, `Sandbox` should be used instead. | ||||
* | Make `Application` and `Sandbox` return a `Result` | 2020-09-08 | 1 | -3/+4 | |
| | |||||
* | Add `scale_factor` to `Application` and `Sandbox` | 2020-06-19 | 1 | -1/+20 | |
| | |||||
* | Add `background_color` to `Application` and `Sandbox` | 2020-06-12 | 1 | -1/+17 | |
| | |||||
* | Mention flags are not supported by `Sandbox` | 2020-04-15 | 1 | -3/+3 | |
| | | | | Fixes #291 | ||||
* | Improve docs for `Sandbox` and `Application` | 2020-04-02 | 1 | -50/+61 | |
| | |||||
* | Clarify return policy of `Application::run` | 2020-04-02 | 1 | -2/+2 | |
| | |||||
* | Allow passing external state to `Application::new` | 2020-03-30 | 1 | -2/+3 | |
| | |||||
* | Add `Application::Executor` associated type | 2020-01-20 | 1 | -1/+2 | |
| | |||||
* | Remove `Message: Clone` bound in `Sandbox` | 2020-01-13 | 1 | -1/+1 | |
| | |||||
* | Write docs for subscriptions and reorganize a bit | 2019-12-14 | 1 | -1/+1 | |
| | |||||
* | Draft first version of event subscriptions :tada: | 2019-12-05 | 1 | -1/+5 | |
| | |||||
* | Allow `Application` configuration with `Settings` | 2019-11-25 | 1 | -5/+5 | |
| | |||||
* | Spawn `Command` futures in `iced_web` | 2019-11-24 | 1 | -1/+1 | |
| | |||||
* | Write docs for `iced` and `iced_native` | 2019-11-22 | 1 | -2/+112 | |
| | |||||
* | Implement `iced::Sandbox` trait for simple apps | 2019-11-21 | 1 | -0/+45 | |