Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -1/+1 | ||
2024-08-04 | Invert Earth's rotation in `solar_system` example | 1 | -1/+1 | ||
2024-08-04 | Introduce `Image` struct in `core::image` | 1 | -12/+3 | ||
2024-08-04 | Increase Earth's spin a bit in `solar_system` example | 1 | -1/+1 | ||
2024-08-04 | Remove unnecessary `with_save` calls in `solar_system` example | 1 | -25/+21 | ||
2024-08-04 | Showcase `canvas` image support in `solar_system` example | 5 | -23/+41 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -5/+2 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -1/+1 | ||
2024-03-22 | Restore `canvas::Frame` API | 1 | -1/+0 | ||
2024-03-21 | Restore `canvas::Program` API | 1 | -4/+4 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -3/+4 | ||
2024-03-17 | Move `Program` to `application` module | 1 | -1/+1 | ||
2024-03-16 | Remove `sandbox` by making `application` more generic :tada: | 1 | -1/+1 | ||
2024-03-16 | Make `sandbox` helper take a `title` as well | 1 | -5/+8 | ||
2024-03-16 | Introduce `Program` API | 1 | -38/+17 | ||
2024-03-06 | Simplify theming for `Application` | 1 | -10/+5 | ||
2024-02-10 | Fix `style` in `solar_system` example | 1 | -1/+1 | ||
2023-11-30 | Use actual floats for logical coordinates | 1 | -9/+5 | ||
2023-09-20 | Fix `clippy::default_trait_access` | 1 | -2/+2 | ||
2023-09-07 | Host GIFs and video examples in `iced.rs` | 1 | -3/+1 | ||
RIP Gfycat | |||||
2023-09-04 | Use workspace dependencies and package inheritance | 2 | -3/+5 | ||
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-06-08 | Implement basic cursor availability | 1 | -2/+3 | ||
2023-05-19 | Remove `Builder` abstractions for gradients | 1 | -4/+4 | ||
2023-05-11 | Added support for gradients as background variants + other optimizations. | 2 | -11/+11 | ||
2023-03-13 | Code cleanup, clearer comments + removed some unnecessary dupe; | 1 | -1/+1 | ||
Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping; | |||||
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 1 | -1/+1 | ||
Rename `canvas` modules to `geometry` in graphics subcrates | |||||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -13/+15 | ||
2023-02-15 | Redraw request events for multiwindow. | 1 | -1/+1 | ||
2023-01-12 | Implement `window::frames` subscription | 1 | -2/+1 | ||
... and use it in the `solar_system` example :tada: | |||||
2022-11-09 | Introduce `Custom` variants for every style in the built-in `Theme` | 1 | -4/+8 | ||
2022-11-03 | Move `mesh::Style` to `triangle` and reuse it in `fill` and `stroke` | 1 | -1/+1 | ||
2022-11-03 | Refactor imports in `solar_system` example | 1 | -11/+12 | ||
2022-11-03 | Run `cargo fmt` | 1 | -7/+7 | ||
2022-10-07 | Fixed import issue with canvas in the gradient mod for situations where ↵ | 1 | -8/+2 | ||
canvas feature is not enabled. | |||||
2022-10-07 | Adjusted reexports for clarity. | 1 | -2/+1 | ||
2022-10-07 | Added support for relative positioning of gradient fills. Addressed some PR ↵ | 1 | -2/+5 | ||
feedback. | |||||
2022-10-06 | Fixed some imports/documentation. | 1 | -2/+2 | ||
2022-10-06 | Added support for gradients to respect current frame transform. | 1 | -19/+21 | ||
2022-10-06 | Fixed lint issues & cleaned up some documentation. | 1 | -4/+3 | ||
2022-10-04 | Reworked wgpu buffers, updated glow side to have proper transform location ↵ | 1 | -2/+2 | ||
storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR. | |||||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -6/+7 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -6/+7 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -5/+9 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -2/+1 | ||
... and check those in CI as well! | |||||
2022-07-08 | Add `Style` variant support to `application::StyleSheet` | 1 | -1/+10 | ||
2022-06-16 | Fix alpha blending for wgpu msaa | 1 | -4/+4 | ||
2022-06-07 | Implement theme styling for `Canvas` | 1 | -0/+1 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -4/+8 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-03-18 | Reintroduce generic `Message` type for `canvas::Program` | 1 | -3/+1 | ||
As it is useful to make the `Message` completely free in many implementations. | |||||
2022-03-09 | Use associated type for `Message` in a `canvas::Program` | 1 | -1/+3 | ||