Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -1/+1 | ||
2025-02-11 | Replace `with` function with `Function` trait | 1 | -3/+5 | ||
2025-01-24 | Add helper functions for alignment to `widget` module | 1 | -2/+2 | ||
2024-11-05 | Draft `reactive-rendering` feature for `button` | 1 | -1/+1 | ||
2024-09-18 | Implement some `From` traits for `text_input::Id` | 1 | -4/+2 | ||
2024-07-30 | Return `window::Id` in `window::open` | 1 | -4/+7 | ||
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 | -2/+2 | ||
2024-07-09 | Remove `load` method from `application` and `daemon` | 1 | -5/+11 | ||
If you need to run a `Task` during boot, use `run_with` instead! | |||||
2024-06-20 | Remove `window::Id::MAIN` constant | 1 | -1/+1 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -23/+16 | ||
2024-06-16 | Rename `window::closings` to `window::close_events` | 1 | -1/+1 | ||
2024-06-14 | Use all themes in `multi_window` example | 1 | -5/+1 | ||
2024-06-14 | Simplify `WindowOpened` message handler in `multi_window` example | 1 | -6/+5 | ||
2024-06-14 | Use `Task` chaining to simplify `multi_window` example | 1 | -83/+72 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -10/+10 | ||
2024-06-10 | Introduce `window::Id` to `Event` subscriptions | 1 | -5/+7 | ||
And remove `window::Id` from `Event` altogether. | |||||
2024-05-13 | Ask for explicit `Length` in `center_*` methods | 1 | -1/+1 | ||
2024-05-03 | Introduce `center` widget helper | 1 | -8/+5 | ||
... 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. | |||||
2023-12-02 | Use `AtomicU64` for `window::Id` | 1 | -24/+25 | ||
2023-11-30 | Use actual floats for logical coordinates | 1 | -6/+9 | ||
2023-07-24 | Moved `exit_on_close_request` to window settings. This now controls whether ↵ | 1 | -4/+2 | ||
each INDIVIDUAL window should close on CloseRequested events. | |||||
2023-07-21 | refactored window storage; | 2 | -61/+103 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-03-14 | Added simpler MW example | 2 | -559/+103 | ||
2023-03-13 | Code cleanup, clearer comments + removed some unnecessary dupe; | 1 | -1/+1 | ||
Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping; | |||||
2023-02-20 | Cargo fix | 2 | -146/+160 | ||
2023-02-17 | Iced master merge (again) | 1 | -2/+2 | ||
2023-02-17 | Fixed widget animations implementation | 1 | -11/+10 | ||
2023-02-15 | Widget operations for multi-window. | 1 | -5/+45 | ||
2023-01-18 | Added window::Id to multi_window application's scale_factor | 1 | -0/+8 | ||
2023-01-09 | Formatting | 1 | -5/+5 | ||
2023-01-09 | Implemented window title update functionality for multiwindow. | 2 | -4/+8 | ||
2023-01-09 | Fixed issue with window ID on winit | 2 | -0/+3 | ||
2023-01-09 | merged in iced master | 1 | -1/+1 | ||
2023-01-09 | remove `windows` method (use commands instead) | 1 | -9/+4 | ||
2023-01-09 | implement `multi_window` for `iced_glutin` | 1 | -2/+2 | ||
2023-01-09 | Introduce `close_requested` for `multi-window` | 1 | -0/+4 | ||
2023-01-09 | Allow closing the window from user code | 1 | -2/+7 | ||
2023-01-09 | create multi-windowed `pane_grid` example | 1 | -101/+278 | ||
2023-01-09 | duplicate `pane_grid` example to `multi_window` | 2 | -27/+355 | ||
2023-01-09 | Fix `multi_window` example | 1 | -0/+58 | ||