Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Simplify imports of `clock` example | 1 | -2/+2 | ||
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -2/+2 | ||
2025-01-24 | Add `Duration` helpers to `time` module | 1 | -2/+2 | ||
2025-01-16 | Simplify tick drawing logic in `clock` example | 1 | -3/+1 | ||
2025-01-16 | Make numbers bigger and draw ticks in `clock` example | 1 | -16/+35 | ||
2024-10-19 | Modified clock example to make the clock more readable. Added numbers on ↵ | 1 | -2/+26 | ||
the clock face and took the portion of the hour passed into consideration for the hour hand. It now looks like a reasonable clock. | |||||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -10/+4 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -1/+1 | ||
2024-05-18 | Simplify `clock` example a bit | 1 | -12/+12 | ||
2024-05-03 | Fix `clock` example doesn't get the correct local time under unix system | 1 | -14/+12 | ||
There is a long-standing problem (https://github.com/time-rs/time/issues/293) that has not yet been solved by time-rs Switch to chrono as it seemed to solve the problem (https://github.com/chronotope/chrono/pull/677) | |||||
2024-04-30 | Enable logging in `clock` example | 1 | -0/+2 | ||
2024-03-22 | Restore `canvas::Frame` API | 1 | -3/+1 | ||
2024-03-21 | Restore `canvas::Program` API | 1 | -4/+6 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -4/+4 | ||
2024-03-17 | Move `Program` to `application` module | 1 | -1/+1 | ||
2024-03-17 | Remove `Sandbox` trait :tada: | 1 | -1/+1 | ||
2024-03-16 | Improve styling of `clock` example | 1 | -5/+5 | ||
2024-03-16 | Scale theme name in `clock` example | 1 | -3/+3 | ||
2024-03-16 | Remove `sandbox` by making `application` more generic :tada: | 1 | -1/+1 | ||
2024-03-16 | Show name of current `Theme` in `clock` example | 1 | -4/+29 | ||
2024-03-16 | Make `sandbox` helper take a `title` as well | 1 | -2/+1 | ||
2024-03-16 | Introduce `Program` API | 1 | -32/+21 | ||
2024-03-08 | Use `Theme::TokyoNight` for `clock` example | 1 | -5/+11 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -1/+1 | ||
2023-09-20 | Fix `clippy::default_trait_access` | 1 | -1/+1 | ||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -1/+1 | ||
2023-06-08 | Implement basic cursor availability | 1 | -4/+3 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -4/+5 | ||
2022-11-03 | Run `cargo fmt` | 1 | -1/+1 | ||
2022-10-06 | Fixed lint issues & cleaned up some documentation. | 1 | -3/+3 | ||
2022-10-04 | Reworked wgpu buffers, updated glow side to have proper transform location ↵ | 1 | -3/+3 | ||
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 | -22/+32 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -22/+32 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -8/+12 | ||
2022-06-07 | Implement theme styling for `Canvas` | 1 | -1/+6 | ||
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 | ||
2022-02-03 | Ask for a slice of segments instead of ownership in `LineDash` | 1 | -2/+2 | ||
2022-01-27 | Fix examples, no longer Copy | 1 | -2/+2 | ||
2022-01-15 | Make `clock` example responsive | 1 | -5/+1 | ||
2022-01-12 | Replace `chrono` with `time` in `clock` example | 1 | -10/+13 | ||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -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!) | |||||
2021-03-11 | Add `clipboard` argument to `Application::update` | 1 | -3/+7 | ||
2020-09-08 | Make `Application` and `Sandbox` return a `Result` | 1 | -1/+1 | ||
2020-04-30 | Implement `time::every` in `iced_futures` | 1 | -41/+5 | ||
2020-04-29 | Introduce `Cursor` type in `canvas` | 1 | -4/+4 | ||
2020-04-28 | Remove `Drawable` and rename `State` to `Program` | 1 | -56/+42 | ||
2020-04-19 | Remove `Layer` trait and simplify `Canvas` | 1 | -2/+2 | ||
2020-04-19 | Draft `Program` interactivity for `Canvas` | 1 | -3/+2 | ||