Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-26 | Free proxy slots unconditionally in `AboutToWait` | 1 | -5/+5 | ||
2025-02-21 | Run `cargo fmt` | 1 | -3/+5 | ||
2025-02-14 | Fix priority of redraw requests in `winit` shell | 1 | -1/+1 | ||
2025-02-03 | Fulfill `InputMethod` requests only during `RedrawRequested` | 1 | -4/+4 | ||
2025-02-02 | Refactor and simplify `input_method` API | 1 | -148/+8 | ||
2025-02-02 | Draft `input_method` support | 1 | -15/+147 | ||
2025-02-02 | Fix infinite runtime loop when queue redraws at a specific time | 1 | -0/+13 | ||
2025-01-16 | feat: add a window drag resize task | 1 | -0/+7 | ||
2025-01-14 | Panic instead of erroring when compositor channel unexpectedly closes | 1 | -12/+5 | ||
2025-01-06 | Rename `window::change_*` tasks to `set_*` | 1 | -3/+3 | ||
2025-01-06 | Fix unintuitive variable name in `winit::program` | 1 | -9/+9 | ||
2025-01-06 | Remove `window::change_title` since it's redundant | 1 | -5/+0 | ||
Applications can change title declaratively. | |||||
2025-01-06 | window task for setting resize increments | 1 | -0/+10 | ||
2025-01-06 | window resizable task | 1 | -0/+5 | ||
2025-01-06 | window tasks for setting min and max size | 1 | -0/+20 | ||
2025-01-06 | add Task and Action for changing a window title | 1 | -0/+5 | ||
2025-01-06 | Simplify type annotations in `winit::program` | 1 | -6/+2 | ||
2025-01-06 | Initialize `Compositor` lazily in `winit` shell | 1 | -143/+144 | ||
... and get rid of the ghost boot window! | |||||
2025-01-06 | Use "outer" positions in all window-related operations | 1 | -1/+16 | ||
2024-12-10 | Add image and hash snapshot-based testing to `iced_test` | 1 | -42/+12 | ||
2024-11-21 | Remove `surface` argument of `Compositor::screenshot` | 1 | -1/+0 | ||
This argument was completely ignored by the wgpu renderer, and used only for the `clip_mask` by the `tiny_skia` renderer. I believe creating a new clip mask is correct. This way it's possible to render offscreen without needing a surface. | |||||
2024-11-05 | Replace `reactive-rendering` feature with `unconditional-rendering` | 1 | -2/+4 | ||
2024-11-05 | Fix deferred layout on resize after drawing | 1 | -59/+33 | ||
2024-11-05 | Request a redraw when a window is resized | 1 | -0/+7 | ||
If we do not request it, macOS does not get any `RedrawRequested` events. Shouldn't `winit` [take care of this]? Probably a bug. [take care of this]: https://docs.rs/winit/0.30.5/winit/event/enum.WindowEvent.html#variant.RedrawRequested | |||||
2024-11-05 | Implement `reactive-rendering` for `text_input` | 1 | -30/+18 | ||
... and fix the redraw queue logic in `iced_winit`. | |||||
2024-11-05 | Implement `reactive-rendering` for `slider` | 1 | -0/+2 | ||
2024-11-05 | Remove `TODO` about reactive rendering in `iced_winit` | 1 | -5/+0 | ||
2024-11-05 | Draft `reactive-rendering` feature for `button` | 1 | -26/+69 | ||
2024-09-14 | Disable `drag_and_drop` attribute for boot window | 1 | -8/+16 | ||
2024-09-13 | Fix `wasm32` deployments not displaying anything (#2574) | 1 | -26/+41 | ||
* reuse `canvas` element generated by dummy window * fix formatting * set `control_flow` to `Poll` in `resumed` this is mostly a fix for Chrome * Avoid blowing up memory when booting up on Wasm --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | |||||
2024-09-13 | Enter `Runtime` when calling `Program::subscription` | 1 | -2/+2 | ||
2024-09-05 | Add mouse passthrough tasks to `window` module | 1 | -0/+10 | ||
Co-authored-by: Jose Quesada <jquesada2016@fau.edu> | |||||
2024-09-03 | Reconnect `Clipboard` on window close | 1 | -21/+33 | ||
Fixes #2564 | |||||
2024-08-30 | Add `get_scale_factor` task to `window` module | 1 | -1/+8 | ||
2024-08-15 | Produce `window::Event::Closed` only if window exists | 1 | -5/+7 | ||
2024-08-15 | Fix crash when application boots from a URL event in macOS | 1 | -3/+14 | ||
2024-08-12 | Revert `window::close` producing a `window::Id` | 1 | -2/+1 | ||
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 | Produce `window::Event::Closed` on `window::close` | 1 | -1/+7 | ||
2024-08-12 | Make `window::close` return and introduce `Task::discard` | 1 | -1/+3 | ||
2024-08-11 | iced_winit: drop Clipboard before Window | 1 | -1/+1 | ||
Fixes #2482, avoids nasal daemons | |||||
2024-08-01 | Plug `received_url` in `winit::program` | 1 | -0/+17 | ||
2024-07-30 | Return `window::Id` in `window::open` | 1 | -2/+3 | ||
2024-07-30 | Avoid exiting when a window is being opened | 1 | -9/+12 | ||
Fixes #2532 | |||||
2024-07-24 | Fix macOS race condition when closing window | 1 | -9/+11 | ||
2024-07-24 | Exit runtime with `control_sender` instead of `break` | 1 | -2/+6 | ||
2024-07-11 | Finish `window::open` only when window fully opens | 1 | -25/+22 | ||
... and run initial `Task` after `window::open` for applications. This fixes certain race conditions. | |||||
2024-07-11 | Make window visible after surface creation in `iced_winit` | 1 | -1/+11 | ||
2024-07-05 | Hide `Subscription` internals | 1 | -2/+4 | ||
.. and introduce `stream::channel` helper | |||||
2024-07-05 | Hide internal `Task` constructors | 1 | -2/+2 | ||
2024-06-21 | Fix fonts not being loaded at startup | 1 | -1/+9 | ||