Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -1/+1 | ||
2025-01-27 | Implement AI `gallery` example :tada: | 1 | -2/+1 | ||
It displays the most popular daily images of Civitai! | |||||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -9/+10 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -5/+5 | ||
2024-07-09 | Remove `load` method from `application` and `daemon` | 2 | -8/+8 | ||
If you need to run a `Task` during boot, use `run_with` instead! | |||||
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 | -7/+7 | ||
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-05-01 | Make `image::Id` actually opaque | 1 | -1/+1 | ||
2024-03-18 | fix: run `cargo fmt` | 1 | -3/+1 | ||
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-16 | Reuse `Pokedex` search `Command` in `update` logic | 1 | -3/+3 | ||
2024-03-16 | Implement `Program::load` to specify startup `Command` | 1 | -9/+9 | ||
2024-03-16 | Introduce `Program` API | 1 | -9/+6 | ||
2024-03-04 | Simplify theming for `Text` widget | 1 | -4/+2 | ||
2023-12-15 | Remove `webgl` feature in `pokedex` example | 1 | -1/+1 | ||
2023-12-15 | Update `winit` to `0.29.4` | 1 | -1/+1 | ||
2023-09-07 | Host GIFs and video examples in `iced.rs` | 1 | -3/+1 | ||
RIP Gfycat | |||||
2023-09-07 | Update example dependencies | 2 | -3/+6 | ||
2023-09-04 | Use workspace dependencies and package inheritance | 1 | -1/+3 | ||
We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version. | |||||
2023-07-13 | Fix new `clippy` lint in `pokedex` example | 1 | -1/+1 | ||
2023-02-17 | image: Allow any kind of data that implements `AsRef<[u8]>` for the image data | 1 | -1/+1 | ||
It's not required anywhere for it to be a plain slice or a `Vec` and this makes it possible to use data allocated in a different way without copying. | |||||
2023-01-27 | Fix: Clippy lint 'uninlined_format_args' | 1 | -5/+3 | ||
2022-07-27 | Fix `clippy` lints | 1 | -1/+1 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -69/+46 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -2/+1 | ||
... and check those in CI as well! | |||||
2022-06-29 | Introduce `StyleSheet` for `Text` widget | 1 | -2/+2 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -28/+8 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-02-09 | Update Rust edition to 2021 :tada: | 1 | -1/+1 | ||
2022-01-13 | Update `reqwest` in examples | 1 | -1/+2 | ||
... and rely on `rustls` instead of `native-tls` | |||||
2022-01-12 | Remove support for old `tokio` crate | 1 | -2/+2 | ||
2021-12-07 | Remove unused fields in `pokedex` example | 1 | -4/+1 | ||
2021-10-31 | Reintroduce `Box` for `style_sheet` in `Button` | 1 | -1/+1 | ||
2021-10-18 | Wire up styling to `Button` in `iced_native` | 1 | -1/+1 | ||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -6/+6 | ||
2021-09-20 | Introduce and use `CrossAlign` enum for `Column` and `Row` | 1 | -6/+6 | ||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -7/+3 | ||
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-04-12 | Run cargo fmt | 1 | -1/+4 | ||
2021-03-11 | Add `clipboard` argument to `Application::update` | 1 | -3/+7 | ||
2020-12-18 | Use `image::Viewer` in `pokedex` example | 1 | -3/+8 | ||
2020-11-25 | Introduce `tokio_old` feature | 1 | -1/+1 | ||
This feature allows users to rely on the `0.2` version of `tokio` while the async ecosystem upgrades to the latest version. | |||||
2020-11-23 | Use `f32` for `border_width` and `border_radius` | 1 | -1/+1 | ||
2020-09-08 | Make `Application` and `Sandbox` return a `Result` | 1 | -1/+1 | ||
2020-03-31 | Implement `padding` support for `Container` | 1 | -1/+1 | ||
2020-03-30 | Allow passing external state to `Application::new` | 1 | -1/+2 | ||
2020-03-06 | Update `reqwest` in `pokedex` example | 1 | -5/+9 | ||
2020-02-06 | Add `font-family` to `Text` style in `iced_web` | 1 | -0/+1 | ||
2020-02-06 | Allow switching `executor::Default` with features | 2 | -8/+2 | ||
2020-02-05 | Make `pokedex` example work on Wasm | 2 | -11/+37 | ||