Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Update all `examples` to Rust 2024 | 2 | -2/+2 | ||
2025-02-15 | Use SI metrics for memory in `system_information` example | 1 | -9/+9 | ||
2024-12-03 | Avoid using `Message` to drive logic in `system_information` example | 1 | -7/+11 | ||
2024-12-03 | fix: add run_with(Example::new) | 1 | -1/+5 | ||
The example was not running the `update` method and was stuck on the loading screen (at least on macos). This fixes is on my system. | |||||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -2/+6 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -4/+5 | ||
2024-05-13 | Ask for explicit `Length` in `center_*` methods | 1 | -2/+2 | ||
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 | fix: run `cargo fmt` | 1 | -8/+4 | ||
2024-03-18 | refactor: replace `text(format!(` with `text` macro | 1 | -18/+18 | ||
2024-03-17 | Move `Program` to `application` module | 1 | -6/+2 | ||
2024-03-16 | Implement `Program::load` to specify startup `Command` | 1 | -13/+13 | ||
2024-03-16 | Introduce `Program` API | 1 | -15/+6 | ||
2024-02-02 | The memory information is returned in bytes and not kb. | 1 | -4/+4 | ||
Fix the documentation of the Information struct, and the example system_information that uses it. Co-authored-by: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com> | |||||
2023-09-19 | Chore: Inline format args for ease of reading | 1 | -2/+2 | ||
A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read. | |||||
2023-09-04 | Use workspace dependencies and package inheritance | 1 | -2/+4 | ||
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-01-27 | Fix: Clippy lint 'uninlined_format_args' | 1 | -3/+2 | ||
2022-09-23 | Include short version in example app | 1 | -0/+11 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -45/+31 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -5/+2 | ||
... and check those in CI as well! | |||||
2022-05-14 | Draft first-class `Theme` support | 1 | -1/+2 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-04 | Show `Loading` screen when refreshing in `system_information` example | 1 | -0/+2 | ||
2022-04-30 | Expose `system` module through feature flag | 1 | -2/+2 | ||
2022-04-27 | Simplify the `QueryInformation` Action | 2 | -13/+7 | ||
2022-04-27 | Rename `system::information` to `fetch_information` | 1 | -2/+2 | ||
2022-04-26 | Add memory usage to `Information` struct | 1 | -6/+37 | ||
2022-04-26 | Improve example readability | 1 | -8/+9 | ||
2022-04-26 | Add graphics information to example | 1 | -0/+12 | ||
2022-04-26 | Add unformated memory total to example | 1 | -1/+7 | ||
2022-04-26 | Add `system_information` example | 2 | -0/+129 | ||