Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-03-17 | Remove `Sandbox` trait :tada: | 1 | -199/+0 | ||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -1/+3 | ||
2024-03-07 | Fix broken links in documentation | 1 | -3/+1 | ||
2024-03-06 | Simplify theming for `Application` | 1 | -6/+6 | ||
2024-02-15 | Point doc links to `0.12` branch | 1 | -11/+11 | ||
2023-07-28 | Bump versions :tada: | 1 | -11/+11 | ||
2023-04-13 | Bump versions :tada: | 1 | -11/+11 | ||
2023-02-18 | Bump versions :tada: | 1 | -11/+11 | ||
2023-01-14 | Bump versions :tada: | 1 | -11/+11 | ||
2023-01-12 | Draft `Shell:request_redraw` API | 1 | -11/+0 | ||
... and implement `TextInput` cursor blink :tada: | |||||
2022-12-07 | Bump versions :tada: | 1 | -11/+11 | ||
2022-11-10 | Fix outdated links in documentation | 1 | -11/+11 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -5/+5 | ||
2022-07-08 | Add `theme::Application` styling support to `Sandbox` | 1 | -3/+13 | ||
2022-05-25 | Let a `Theme` control the background color of an application | 1 | -12/+1 | ||
... and remove `Application::background_color` | |||||
2022-05-14 | Draft first-class `Theme` support | 1 | -5/+20 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-02 | Replace `hecrj` in links with `iced-rs` | 1 | -11/+11 | ||
2022-04-30 | Point repository links to `0.4` branch in documentation | 1 | -11/+11 | ||
2022-01-28 | Split `iced_futures` into different `backend` implementations | 1 | -1/+1 | ||
2021-12-29 | Allow Sandbox applications to exit. | 1 | -0/+11 | ||
2021-09-15 | Revert system menus support | 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`. | |||||
2021-09-02 | Make `Command` implementations platform-specific | 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!) | |||||
2021-07-13 | Force `Application::Message` to implement `Clone` | 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. | |||||
2021-06-14 | docs: update all 0.2 github links to 0.3 | 1 | -11/+11 | ||
2021-03-11 | Add `clipboard` argument to `Application::update` | 1 | -2/+7 | ||
2021-01-22 | update example description at sandbox's documentation (#710) | 1 | -3/+3 | ||
* Update sandbox.rs * Update sandbox.rs * format Co-authored-by: Diego Rosario <diegorosario2013@gmail.com> | |||||
2020-11-26 | Update example links to point to `0.2` branch | 1 | -11/+11 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -23/+1 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-10-17 | Remove `executor::Null` from the root public API | 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. | |||||
2020-09-08 | Make `Application` and `Sandbox` return a `Result` | 1 | -3/+4 | ||
2020-06-19 | Add `scale_factor` to `Application` and `Sandbox` | 1 | -1/+20 | ||
2020-06-12 | Add `background_color` to `Application` and `Sandbox` | 1 | -1/+17 | ||
2020-04-15 | Mention flags are not supported by `Sandbox` | 1 | -3/+3 | ||
Fixes #291 | |||||
2020-04-02 | Improve docs for `Sandbox` and `Application` | 1 | -50/+61 | ||
2020-04-02 | Clarify return policy of `Application::run` | 1 | -2/+2 | ||
2020-03-30 | Allow passing external state to `Application::new` | 1 | -2/+3 | ||
2020-01-20 | Add `Application::Executor` associated type | 1 | -1/+2 | ||
2020-01-13 | Remove `Message: Clone` bound in `Sandbox` | 1 | -1/+1 | ||
2019-12-14 | Write docs for subscriptions and reorganize a bit | 1 | -1/+1 | ||
2019-12-05 | Draft first version of event subscriptions :tada: | 1 | -1/+5 | ||
2019-11-25 | Allow `Application` configuration with `Settings` | 1 | -5/+5 | ||
2019-11-24 | Spawn `Command` futures in `iced_web` | 1 | -1/+1 | ||
2019-11-22 | Write docs for `iced` and `iced_native` | 1 | -2/+112 | ||
2019-11-21 | Implement `iced::Sandbox` trait for simple apps | 1 | -0/+45 | ||