Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -1/+1 | ||
2024-08-12 | Revert `window::close` producing a `window::Id` | 1 | -4/+2 | ||
Instead, subscribing to `window::close_events` is preferable; since most use cases will want to react to the user closing a window as well. | |||||
2024-08-12 | Make `window::close` return and introduce `Task::discard` | 1 | -2/+4 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -3/+3 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -11/+6 | ||
2024-06-20 | Remove `window::Id::MAIN` constant | 1 | -2/+2 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -1/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -5/+5 | ||
2024-06-10 | Introduce `window::Id` to `Event` subscriptions | 1 | -3/+2 | ||
And remove `window::Id` from `Event` altogether. | |||||
2024-05-03 | Introduce `center` widget helper | 1 | -7/+2 | ||
... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result. | |||||
2024-03-18 | refactor: replace `text(format!(` with `text` macro | 1 | -1/+1 | ||
2024-03-17 | Move `Program` to `application` module | 1 | -1/+1 | ||
2024-03-17 | Remove `Sandbox` trait :tada: | 1 | -1/+1 | ||
2024-03-16 | Implement `Program::load` to specify startup `Command` | 1 | -6/+1 | ||
2024-03-16 | Introduce `Program` API | 1 | -23/+8 | ||
2024-02-01 | Introduce support for disabling a `checkbox` | 1 | -5/+2 | ||
2024-01-10 | Introduce `Widget::size_hint` and fix further layout inconsistencies | 1 | -2/+1 | ||
2023-09-07 | Introduce `keyboard::on_key_press` and `on_key_release` | 1 | -3/+2 | ||
Also rename `subscription::events*` to `event::listen*`. | |||||
2023-07-21 | refactored window storage; | 1 | -3/+4 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -4/+5 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -1/+1 | ||
2023-01-27 | Fix: Clippy lint 'uninlined_format_args' | 1 | -1/+1 | ||
2023-01-12 | Draft `Shell:request_redraw` API | 1 | -13/+11 | ||
... and implement `TextInput` cursor blink :tada: | |||||
2023-01-09 | add `window::Id` to `Event` and `Action` | 1 | -1/+1 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -16/+15 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -3/+7 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -5/+4 | ||
2021-09-20 | Introduce and use `CrossAlign` enum for `Column` and `Row` | 1 | -4/+4 | ||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -8/+4 | ||
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-03-30 | Showcase graceful exiting in `events` example | 1 | -10/+37 | ||
2021-03-11 | Add `clipboard` argument to `Application::update` | 1 | -3/+7 | ||
2020-09-08 | Make `Application` and `Sandbox` return a `Result` | 1 | -1/+1 | ||
2020-03-30 | Allow passing external state to `Application::new` | 1 | -1/+2 | ||
2020-01-20 | Package examples and remove `dev-dependencies` | 1 | -0/+86 | ||