Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-09 | Implement `sipper` support through `Task::sip` :tada: | 1 | -1/+2 | ||
2024-05-01 | Utilize bytes::Bytes iced_runtime::window::Screenshot | 1 | -0/+1 | ||
2024-04-07 | Use built-in `[lints]` table in `Cargo.toml` | 1 | -0/+3 | ||
2024-02-07 | Re-implement against latest iced master. Rename FetchNativeHandle. | 1 | -0/+1 | ||
2023-09-04 | Use workspace dependencies and package inheritance | 1 | -15/+13 | ||
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-08-02 | Bump version of `iced_runtime` :tada: | 1 | -1/+1 | ||
2023-07-28 | Fix `iced_runtime` description | 1 | -1/+1 | ||
2023-07-28 | Bump versions :tada: | 1 | -3/+3 | ||
2023-07-21 | refactored window storage; | 1 | -0/+1 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-03-05 | Rename `iced_native` to `iced_runtime` | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -7/+0 | ||
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 1 | -5/+0 | ||
Rename `canvas` modules to `geometry` in graphics subcrates | |||||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -0/+6 | ||
2023-02-18 | Bump version of `iced_native` :tada: | 1 | -1/+1 | ||
2023-02-18 | Bump versions :tada: | 1 | -4/+4 | ||
2023-01-14 | Bump versions :tada: | 1 | -3/+3 | ||
2023-01-12 | Use `instant` instead of `wasm-timer` in `iced_core` | 1 | -1/+0 | ||
2023-01-12 | Use `instant` to fix Wasm target | 1 | -0/+1 | ||
2022-12-07 | Bump versions :tada: | 1 | -2/+2 | ||
2022-11-10 | Bump versions :tada: | 1 | -1/+1 | ||
2022-11-10 | Bump versions :tada: | 1 | -4/+4 | ||
2022-05-31 | Bump versions :tada: | 1 | -1/+1 | ||
2022-05-02 | Bump versions :tada: | 1 | -4/+4 | ||
2022-02-09 | Update Rust edition to 2021 :tada: | 1 | -1/+1 | ||
2022-01-28 | Move `time` module from `iced_native` to `iced_core` | 1 | -4/+0 | ||
2022-01-28 | Enable `instant` only for `wasm32` targets | 1 | -1/+4 | ||
... and hide the dependency under a `time` module in `iced_native` | |||||
2022-01-28 | Use instant instead of std::instant | 1 | -0/+1 | ||
2022-01-03 | Change GitHub namespace to new org for all files | 1 | -1/+1 | ||
2021-11-14 | Disable default features in twox-hash dependency. | 1 | -1/+1 | ||
We don't use twox-hash's random seeding features. Removing them makes this crate leaner and also more portable (specifically for web). | |||||
2021-10-18 | Draw scrollbar in `Widget::draw` for `Scrollable` | 1 | -0/+4 | ||
2021-03-31 | Bump versions :tada: | 1 | -3/+3 | ||
2020-11-26 | Bump versions :tada: | 1 | -3/+3 | ||
2020-06-13 | Make `Slider` value type generic | 1 | -0/+1 | ||
2020-05-21 | Introduce `Program` and `State` | 1 | -0/+3 | ||
2020-05-20 | Refactor `Viewport` and `Compositor` | 1 | -1/+0 | ||
2020-04-26 | Bump versions :tada: | 1 | -1/+1 | ||
2020-04-15 | Bump versions :tada: | 1 | -1/+1 | ||
2020-04-02 | Bump all versions :tada: | 1 | -3/+3 | ||
2020-01-20 | Add `Application::Executor` associated type | 1 | -1/+1 | ||
2020-01-19 | Create `iced_futures` and wire everything up | 1 | -1/+8 | ||
2019-12-08 | Allow listening to runtime events in subscriptions | 1 | -0/+1 | ||
2019-12-06 | Use `unicode-segmentation` for `text_input::Value` | 1 | -0/+1 | ||
2019-12-05 | Draft first version of event subscriptions :tada: | 1 | -1/+1 | ||
2019-11-20 | Add installation section to subcrate `README`s | 1 | -2/+2 | ||
2019-11-17 | Implement future-based `Command` in `iced_core` | 1 | -1/+1 | ||
2019-11-10 | Draft new layout API | 1 | -1/+0 | ||
2019-10-28 | Implement text clipping (caching still broken) | 1 | -1/+1 | ||
2019-10-23 | Remove leftover `winit` feature for `doc.rs` | 1 | -3/+0 | ||
2019-10-10 | Move `winit` conversions to `iced_winit` | 1 | -3/+0 | ||
2019-10-09 | Move `winit` logic from `iced` to `iced_winit` | 1 | -0/+1 | ||
- Added new `renderer::Windowed` trait. This shoud allow users to easily try different renderers by simply changing one line. - Renamed `UserInterface` traits to `Application`, as the `run` method takes total control of the current thread. - Moved `MouseCursor` back to `iced_native`. The new `renderer::Windowed` trait returns one on `draw`. - Split `iced_native` renderer in multiple modules, for consistency. |