summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Show `Loading` screen when refreshing in `system_information` exampleLibravatar Héctor Ramón Jiménez2022-05-041-0/+2
|
* Run `system::information` in a different threadLibravatar Héctor Ramón Jiménez2022-05-043-9/+17
| | | | ... since it seems it can block for a couple of seconds.
* Fix feature name in `cfg` block in `iced_winit`Libravatar Héctor Ramón Jiménez2022-05-041-1/+1
|
* Add logging to window and context creationLibravatar Richard2022-05-021-1/+13
|
* Expose `system` module through feature flagLibravatar Héctor Ramón Jiménez2022-04-308-14/+30
|
* Simplify the `QueryInformation` ActionLibravatar Richard2022-04-277-35/+15
|
* Use closure internally to fetch `graphics_info`Libravatar Richard2022-04-273-14/+11
|
* Rename `system::information` to `fetch_information`Libravatar Richard2022-04-272-3/+3
|
* Change `ContextCreationFailed` to `GraphicsCreationFailed`Libravatar Richard2022-04-273-12/+12
|
* Rename `get_information` to `fetch_information`Libravatar Richard2022-04-276-8/+8
|
* Move `compositor` module access from `window` to `crate`Libravatar Richard2022-04-278-22/+27
|
* Rename `GraphicsInformation` to `Information`Libravatar Richard2022-04-267-13/+13
|
* Enumerate adapters based on log levelLibravatar Richard2022-04-261-1/+1
|
* Introduce `get_information`Libravatar Richard2022-04-262-34/+41
|
* Add memory usage to `Information` structLibravatar Richard2022-04-263-8/+51
|
* Improve example readabilityLibravatar Richard2022-04-261-8/+9
|
* Add graphics information to exampleLibravatar Richard2022-04-261-0/+12
|
* Add graphics information to `iced_glutin`Libravatar Richard2022-04-261-0/+3
|
* Add graphics information to `iced_winit`Libravatar Richard2022-04-261-3/+11
|
* Add graphics information to `system::Information`Libravatar Richard2022-04-261-0/+4
|
* Implement `GraphicsInformation` for `iced_glow`Libravatar Richard2022-04-262-0/+13
|
* Implement `GraphicsInformation` for `iced_wgpu`Libravatar Richard2022-04-262-0/+14
|
* Introduce `GraphicsInformation` to `iced_graphics`Libravatar Richard2022-04-262-1/+10
|
* Export `system` module in `iced_glutin`Libravatar Richard2022-04-261-0/+1
|
* Add unformated memory total to exampleLibravatar Richard2022-04-261-1/+7
|
* Add `system_information` exampleLibravatar Richard2022-04-265-6/+130
|
* Export new `system` moduleLibravatar Richard2022-04-262-3/+4
|
* Add function helper in `iced_winit::system`Libravatar Richard2022-04-262-0/+15
|
* Turn `Information` fields `pub`Libravatar Richard2022-04-262-22/+21
|
* Implement `QueryInformation` for `iced_winit`Libravatar Richard2022-04-261-1/+44
|
* Introduce `QueryInformation` to `system::Action`Libravatar Richard2022-04-264-4/+52
|
* Add new `System` variant to `Action`Libravatar Richard2022-04-265-0/+14
|
* Add `sysinfo` crate through feature flagLibravatar Richard2022-04-262-0/+3
|
* Add logging to window and context creationLibravatar Richard2022-04-265-9/+38
|
* Introduce `Error::ContextCreationFailed`Libravatar Richard2022-04-205-18/+39
|
* Merge pull request #1308 from nicksenger/fix/pure-component-overlayLibravatar Héctor Ramón2022-04-191-1/+1
|\ | | | | fix: tree node passed in `component::OverlayInstance::on_event`
| * fix: tree node passed in `component::OverlayInstance::on_event`Libravatar Nick Senger2022-04-181-1/+1
| |
* | Merge pull request #1309 from nicksenger/fix/pure-stateless-componentsLibravatar Héctor Ramón2022-04-191-1/+3
|\ \ | |/ |/| Fix diffing issue with pure stateless components
| * Revert "add example"Libravatar Nick Senger2022-04-183-114/+0
| | | | | | | | This reverts commit 11986547cbe772fa0bb863cefc3fff7877d1a6d5.
| * fix: diffing issue with pure stateless componentsLibravatar Nick Senger2022-04-181-1/+3
| |
| * add exampleLibravatar Nick Senger2022-04-183-0/+114
|/
* Merge pull request #1301 from nicksenger/fix/nested-pure-componentsLibravatar Héctor Ramón2022-04-181-0/+8
|\ | | | | Fix nested pure components
| * fix: diff widget tree after local event processing in `Component`Libravatar Nick Senger2022-04-171-36/+36
| |
| * fix: overlayLibravatar Nick Senger2022-04-061-14/+14
| |
| * remove exampleLibravatar Nick Senger2022-04-063-179/+0
| |
| * fix: nested componentsLibravatar Nick Senger2022-04-061-22/+30
| |
| * add exampleLibravatar Nick Senger2022-04-063-0/+179
|/
* Merge pull request #1298 from 0x192/masterLibravatar Héctor Ramón2022-04-011-0/+6
|\ | | | | Implement `Default` for `pure::State`
| * Use State::new() for State::default()Libravatar 0x1922022-03-291-3/+1
| |
| * Implement `Default` for `pure::State`Libravatar 0x1922022-03-291-0/+8
|/ | | | Impure Applications using pure widgets can now use a struct implementing `Default`