Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Use new `async ||` closure syntax :tada: | 1 | -1/+1 | ||
2025-02-21 | Update all `examples` to Rust 2024 | 3 | -3/+3 | ||
2025-02-11 | Remove unneded `let _ =` in `websocket` example | 1 | -10/+6 | ||
2025-02-11 | Rewrite `websocket` example using `sipper` | 1 | -60/+38 | ||
2025-01-06 | Fix consistency of import ordering | 1 | -2/+1 | ||
2025-01-06 | chore: remove once_cell dependency | 1 | -2/+4 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -6/+6 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -10/+3 | ||
2024-07-09 | Remove `load` method from `application` and `daemon` | 1 | -14/+13 | ||
If you need to run a `Task` during boot, use `run_with` instead! | |||||
2024-07-05 | Hide `Subscription` internals | 2 | -56/+48 | ||
.. and introduce `stream::channel` helper | |||||
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 | -11/+11 | ||
2024-05-03 | Auto-focus `text_input` in `websocket` example | 1 | -2/+7 | ||
2024-05-03 | Introduce `center` widget helper | 1 | -8/+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-04-02 | Avoid extra text allocations in `websocket` example | 2 | -9/+18 | ||
2024-04-01 | Reintroduce old `text` helper as `value` helper | 1 | -9/+3 | ||
2024-04-01 | Specialize `widget::text` helper with custom `IntoContent` trait | 1 | -1/+5 | ||
2024-03-17 | Use `Program` API in `websocket` example | 1 | -20/+8 | ||
2024-03-04 | Simplify theming for `Text` widget | 1 | -2/+2 | ||
2024-01-11 | Fix `websocket` example | 1 | -1/+1 | ||
2024-01-10 | Introduce `Widget::size_hint` and fix further layout inconsistencies | 1 | -8/+3 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 1 | -2/+0 | ||
2023-09-20 | Fix `clippy::manual_let_else` | 1 | -4/+1 | ||
2023-04-12 | Rename `on_change` to `on_input` for `TextInput` | 1 | -1/+1 | ||
2023-04-12 | Introduce disabled state for `TextInput` | 1 | -6/+3 | ||
2023-04-11 | Use `Result::is_err` in `websocket` example | 1 | -1/+1 | ||
2023-04-11 | Use `127.0.0.1` instead of `localhost` in `websocket` example | 1 | -1/+1 | ||
2023-04-11 | Implement `subscription::channel` and simplify `unfold` | 1 | -48/+52 | ||
2023-03-05 | Remove generic `Hasher` and `Event` from `subscription::Recipe` | 2 | -3/+3 | ||
2023-02-27 | Remove `Fill` variant for `Alignment` | 1 | -1/+3 | ||
Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options! | |||||
2023-01-27 | Fix: Clippy lint 'uninlined_format_args' | 2 | -2/+2 | ||
2023-01-08 | Introduce `RelativeOffset` type in `scrollable` | 1 | -2/+2 | ||
2022-12-29 | Reworked Scrollable to account for lack of widget order guarantees. | 1 | -2/+2 | ||
Fixed thumb "snapping" bug on scrollable when cursor is out of bounds. | |||||
2022-12-29 | Add multidirectional scrolling capabilities to the existing Scrollable. | 1 | -2/+5 | ||
2022-10-28 | Use `once_cell` instead of `lazy_static` | 1 | -3/+2 | ||
This seems to be generally considered the preferred, idiomatic solution now. This is in the standard library behind a feature flag (apparently now called `std::sync::LazyLock`). | |||||
2022-08-04 | Implement `scrollable::snap_to` operation | 1 | -6/+16 | ||
2022-07-27 | Use `ToString` for `Text::new` instead of `Into<String>` | 1 | -7/+8 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -31/+28 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 2 | -7/+7 | ||
... and check those in CI as well! | |||||
2022-06-29 | Introduce `StyleSheet` for `Text` widget | 1 | -1/+1 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -1/+2 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-01-16 | Draft `websocket` example :tada: | 3 | -0/+365 | ||