summaryrefslogtreecommitdiffstats
path: root/examples/system_information (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-212-2/+2
|
* Use SI metrics for memory in `system_information` exampleLibravatar Héctor Ramón Jiménez2025-02-151-9/+9
|
* Avoid using `Message` to drive logic in `system_information` exampleLibravatar Héctor Ramón Jiménez2024-12-031-7/+11
|
* fix: add run_with(Example::new)Libravatar Osma S. Rautila2024-12-031-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.
* Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-191-2/+6
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-141-4/+5
|
* Merge branch 'master' into feat/text-macroLibravatar Héctor Ramón Jiménez2024-05-231-8/+3
|\
| * Ask for explicit `Length` in `center_*` methodsLibravatar Héctor Ramón Jiménez2024-05-131-2/+2
| |
| * Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-031-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.
* | fix: run `cargo fmt`Libravatar Richard Custodio2024-03-181-8/+4
| |
* | refactor: replace `text(format!(` with `text` macroLibravatar Richard Custodio2024-03-181-18/+18
|/
* Move `Program` to `application` moduleLibravatar Héctor Ramón Jiménez2024-03-171-6/+2
|
* Implement `Program::load` to specify startup `Command`Libravatar Héctor Ramón Jiménez2024-03-161-13/+13
|
* Introduce `Program` APILibravatar Héctor Ramón Jiménez2024-03-161-15/+6
|
* The memory information is returned in bytes and not kb.Libravatar brianch2024-02-021-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>
* Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-191-2/+2
| | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
* Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-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.
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-3/+2
|
* Include short version in example appLibravatar Clark Moody2022-09-231-0/+11
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-45/+31
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-5/+2
| | | | ... and check those in CI as well!
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-1/+2
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Show `Loading` screen when refreshing in `system_information` exampleLibravatar Héctor Ramón Jiménez2022-05-041-0/+2
|
* Expose `system` module through feature flagLibravatar Héctor Ramón Jiménez2022-04-301-2/+2
|
* Simplify the `QueryInformation` ActionLibravatar Richard2022-04-272-13/+7
|
* Rename `system::information` to `fetch_information`Libravatar Richard2022-04-271-2/+2
|
* Add memory usage to `Information` structLibravatar Richard2022-04-261-6/+37
|
* Improve example readabilityLibravatar Richard2022-04-261-8/+9
|
* Add graphics information to exampleLibravatar Richard2022-04-261-0/+12
|
* Add unformated memory total to exampleLibravatar Richard2022-04-261-1/+7
|
* Add `system_information` exampleLibravatar Richard2022-04-262-0/+129