Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -1/+1 | ||
2025-01-16 | Use simple quote in `runtime::window` docs | 1 | -2/+2 | ||
2025-01-16 | feat: add a window drag resize task | 1 | -1/+14 | ||
2025-01-06 | Rename `window::change_*` tasks to `set_*` | 1 | -12/+12 | ||
2025-01-06 | Rename `window::resizable` to `window::set_resizable` | 1 | -20/+20 | ||
2025-01-06 | Remove `window::change_title` since it's redundant | 1 | -8/+0 | ||
Applications can change title declaratively. | |||||
2025-01-06 | window task for setting resize increments | 1 | -0/+12 | ||
2025-01-06 | window resizable task | 1 | -0/+8 | ||
2025-01-06 | window tasks for setting min and max size | 1 | -0/+16 | ||
2025-01-06 | add Task and Action for changing a window title | 1 | -0/+8 | ||
2024-12-10 | Add image and hash snapshot-based testing to `iced_test` | 1 | -5/+1 | ||
2024-09-29 | Fix various typos | 1 | -1/+1 | ||
Using https://github.com/crate-ci/typos | |||||
2024-09-20 | Fix documentation for open_events() | 1 | -1/+1 | ||
2024-09-05 | Add mouse passthrough tasks to `window` module | 1 | -0/+28 | ||
Co-authored-by: Jose Quesada <jquesada2016@fau.edu> | |||||
2024-08-30 | Add `get_scale_factor` task to `window` module | 1 | -0/+10 | ||
2024-08-12 | Revert `window::close` producing a `window::Id` | 1 | -3/+3 | ||
Instead, subscribing to `window::close_events` is preferable; since most use cases will want to react to the user closing a window as well. | |||||
2024-08-12 | Make `window::close` return and introduce `Task::discard` | 1 | -3/+3 | ||
2024-07-30 | Return `window::Id` in `window::open` | 1 | -4/+7 | ||
2024-07-13 | Add `resize_events` subscription to `window` module | 1 | -0/+11 | ||
2024-07-05 | Hide internal `Task` constructors | 1 | -26/+26 | ||
2024-06-28 | Fix `window::open_events` subscribing to closed events | 1 | -1/+1 | ||
Fixes #2481. | |||||
2024-06-20 | Add `get_latest` and `get_oldest` tasks in `window` | 1 | -30/+46 | ||
2024-06-16 | Rename `window::closings` to `window::close_events` | 1 | -5/+27 | ||
2024-06-14 | Use `Task` chaining to simplify `multi_window` example | 1 | -9/+29 | ||
2024-06-14 | Fix `Send` requirements for Wasm targets | 1 | -3/+3 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -93/+202 | ||
2024-06-10 | Introduce `window::Id` to `Event` subscriptions | 1 | -2/+2 | ||
And remove `window::Id` from `Event` altogether. | |||||
2024-05-08 | Pass `WindowHandle` by value to `window::run_with_handle` | 1 | -1/+1 | ||
2024-02-22 | Rename `fetch_location` to `fetch_position` | 1 | -8/+8 | ||
2024-02-22 | Add `fetch_location` command to `window` module | 1 | -0/+11 | ||
2024-02-13 | Rename `show_window_menu` to `show_system_menu` | 1 | -3/+5 | ||
2024-02-13 | Add `show_window_menu` action | 1 | -0/+5 | ||
Winit currently supports this only on Windows and Wayland. This requests that a context menu is shown at the cursor position, like the menu normally triggered by right clicking the title bar. This is important for implementing client side decorations with Iced widgets. | |||||
2024-02-07 | Rename `fetch_native_handle` to `run_with_handle` in `window` | 1 | -3/+5 | ||
2024-02-07 | Re-implement against latest iced master. Rename FetchNativeHandle. | 1 | -0/+15 | ||
2024-01-09 | Implemented fetch_maximized and fetch_minimized | 1 | -0/+22 | ||
2023-12-02 | Use `AtomicU64` for `window::Id` | 1 | -47/+52 | ||
2023-11-30 | Use actual floats for logical coordinates | 1 | -8/+5 | ||
2023-09-07 | Introduce `keyboard::on_key_press` and `on_key_release` | 1 | -2/+3 | ||
Also rename `subscription::events*` to `event::listen*`. | |||||
2023-07-21 | refactored window storage; | 1 | -40/+62 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-07-06 | Add `fetch_size` helper to `runtime::window` | 1 | -0/+7 | ||
2023-07-06 | Use `Size` in both `Resize` and `FetchSize` window actions | 1 | -2/+3 | ||
2023-06-27 | Move `Screenshot` inside `window` module | 1 | -1/+3 | ||
2023-06-06 | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵ | 1 | -0/+8 | ||
window::screenshot command. | |||||
2023-05-25 | Replace `change_always_on_top` action with `change_level` | 1 | -5/+5 | ||
2023-03-05 | Rename `iced_native` to `iced_runtime` | 1 | -4/+24 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -33/+19 | ||
2023-02-17 | Iced master merge (again) | 1 | -1/+1 | ||
2023-02-17 | Expose `fetch_id` helper in `window` module | 1 | -0/+9 | ||
2023-02-17 | Expose `change_always_on_top` helper in `window` module | 1 | -4/+15 | ||
2023-02-15 | Merged in iced master | 1 | -1/+1 | ||