summaryrefslogtreecommitdiffstats
path: root/examples/game_of_life (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Restore `canvas::Frame` APILibravatar Héctor Ramón Jiménez2024-03-221-5/+3
|
* Restore `canvas::Program` APILibravatar Héctor Ramón Jiménez2024-03-211-5/+7
|
* Implement composable, type-safe renderer fallbackLibravatar Héctor Ramón Jiménez2024-03-211-9/+9
|
* Use `Program` API in `game_of_life` exampleLibravatar Héctor Ramón Jiménez2024-03-171-35/+21
|
* Group preset list and clear button in `game_of_life` exampleLibravatar Héctor Ramón Jiménez2024-03-081-11/+8
|
* Rename `positive` and `destructive` to `success` and `danger` in `button`Libravatar Héctor Ramón Jiménez2024-03-071-1/+1
|
* Simplify theming for `Button` widgetLibravatar Héctor Ramón Jiménez2024-03-041-3/+3
|
* Fix unused import in `game_of_life` exampleLibravatar Héctor Ramón Jiménez2024-02-051-1/+1
|
* Fix unused `Instant` in `game_of_life` exampleLibravatar Héctor Ramón Jiménez2024-02-051-3/+3
|
* Introduce support for disabling a `checkbox`Libravatar Alexander van Saase2024-02-011-1/+2
|
* Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-2/+2
|
* Update `itertools` dependency for `game_of_life` exampleLibravatar Héctor Ramón Jiménez2023-11-151-1/+1
|
* Fix `clippy::manual_let_else`Libravatar Héctor Ramón Jiménez2023-09-201-6/+3
|
* Fix `clippy::match-wildcard-for-single-variants`Libravatar Héctor Ramón Jiménez2023-09-201-2/+2
|
* Merge pull request #2092 from nyurik/clippyLibravatar Héctor Ramón2023-09-191-1/+1
|\ | | | | Chore: Apply some minor clippy fixes
| * Chore: Apply some minor clippy fixesLibravatar Yuri Astrakhan2023-09-191-1/+1
| | | | | | | | | | | | * Use `.elapsed()` for duration * Use direct iteration without calling `.iter()` and the like * order fields in the `Text` struct creation as declared
* | Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-191-2/+1
|/ | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
* Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-103-13/+13
|\
| * Merge pull request #2070 from ripytide/masterLibravatar Héctor Ramón2023-09-071-4/+4
| |\ | | | | | | Added a Frame::scale_nonuniform method
| | * Make `scale` methods in `Frame` generic over `f32` and `Vector`Libravatar Héctor Ramón Jiménez2023-09-071-4/+4
| | |
| * | Host GIFs and video examples in `iced.rs`Libravatar Héctor Ramón Jiménez2023-09-071-3/+1
| | | | | | | | | | | | RIP Gfycat
| * | Update example dependenciesLibravatar Héctor Ramón Jiménez2023-09-071-1/+1
| | |
| * | Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-042-5/+7
| |/ | | | | | | | | | | 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.
* / Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-1/+1
|/
* Update vulnerable `env_logger` dependency in examplesLibravatar Héctor Ramón Jiménez2023-08-231-1/+1
|
* Take `Rectangle` by value in `Cursor` APILibravatar Héctor Ramón Jiménez2023-06-081-6/+5
|
* Implement basic cursor availabilityLibravatar Héctor Ramón Jiménez2023-06-081-8/+7
|
* Move `Canvas` and `QRCode` to `iced` crateLibravatar Héctor Ramón Jiménez2023-03-031-1/+1
| | | | Rename `canvas` modules to `geometry` in graphics subcrates
* Fix `Clip` primitive translation in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-011-1/+1
|
* Implement `Canvas` support for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-011-35/+38
|
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-1/+1
|
* Fix `#[default]` in `preset` for `game_of_life` exampleLibravatar Héctor Ramón2023-01-191-1/+1
|
* Update preset.rsLibravatar Jedsek2023-01-191-7/+2
|
* Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez2022-12-201-2/+4
|
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2022-10-041-14/+11
|
* Working multitouch exampleLibravatar Artur Sapek2022-10-041-0/+17
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-133/+137
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-092-10/+10
| | | | ... and check those in CI as well!
* Implement theme styling for `Canvas`Libravatar Héctor Ramón Jiménez2022-06-071-2/+7
|
* Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez2022-06-072-59/+1
|
* Introduce specific types for each `palette::Extended` fieldLibravatar Héctor Ramón Jiménez2022-05-262-24/+9
| | | | We will have more control over color calculations for each semantic purpose this way.
* Fix examples and doc-testsLibravatar Héctor Ramón Jiménez2022-05-262-62/+7
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-142-71/+6
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Improve shader version selectionLibravatar Richard2022-01-191-3/+1
|
* Add `env_logger` to `game_of_life`Libravatar Richard2022-01-192-0/+5
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-7/+7
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-4/+4
|
* Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-152-21/+0
| | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-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!)