Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -1322/+0 | ||
2024-06-14 | Use `Task` chaining to simplify `multi_window` example | 1 | -1/+3 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -298/+253 | ||
2024-06-11 | Introduce `subscription::Event` | 1 | -18/+24 | ||
... and remove `PlatformSpecific` from `Event` | |||||
2024-06-10 | Fix widget operations in `multi_window` runtime | 1 | -15/+10 | ||
2024-06-10 | Broadcast orphaned events in `multi_window` runtime | 1 | -7/+14 | ||
2024-06-10 | Introduce `window::Id` to `Event` subscriptions | 1 | -18/+11 | ||
And remove `window::Id` from `Event` altogether. | |||||
2024-05-24 | Added scale_factor to `Screenshot` data for use when cropping to widget bounds | 1 | -0/+1 | ||
2024-05-16 | Fix main window not closing in multi-window runtime | 1 | -1/+1 | ||
2024-05-08 | Pass `WindowHandle` by value to `window::run_with_handle` | 1 | -1/+1 | ||
2024-05-07 | Plug `new_events` handler to event loop | 1 | -0/+15 | ||
2024-05-07 | Update `winit` to `0.30` | 1 | -161/+267 | ||
2024-05-02 | Fix `clippy` lints for new `1.78` stable toolchain | 1 | -1/+1 | ||
2024-04-16 | Implement backpressure mechanism in `iced_winit::Proxy` | 1 | -48/+29 | ||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -6/+1 | ||
2024-04-01 | Use `rustc-hash` for most of our `HashMap` and `HashSet` instances | 1 | -8/+8 | ||
2024-03-22 | Allow custom renderers in `Program` and `Application` | 1 | -5/+4 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -3/+5 | ||
2024-03-07 | Fix `block_on` in `iced_wgpu` hanging Wasm builds | 1 | -2/+5 | ||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -9/+9 | ||
2024-03-06 | Simplify theming for `Application` | 1 | -10/+11 | ||
2024-02-22 | Use `crate::core::Point` instead of prefixing | 1 | -2/+2 | ||
2024-02-22 | Rename `fetch_location` to `fetch_position` | 1 | -14/+15 | ||
2024-02-22 | Add `fetch_location` command to `window` module | 1 | -0/+18 | ||
2024-02-13 | Rename `show_window_menu` to `show_system_menu` | 1 | -1/+1 | ||
2024-02-13 | Add `show_window_menu` action | 1 | -0/+15 | ||
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-13 | Implement win32 workaround for multi_window application as well. Also ↵ | 1 | -2/+30 | ||
trigger AboutToWait for Moved as well. | |||||
2024-02-13 | Introduce `Kind` in `core::clipboard` | 1 | -16/+4 | ||
2024-02-13 | Add support for primary clipboard | 1 | -0/+12 | ||
2024-02-07 | Rename `fetch_native_handle` to `run_with_handle` in `window` | 1 | -11/+11 | ||
2024-02-07 | Re-implement against latest iced master. Rename FetchNativeHandle. | 1 | -0/+12 | ||
2024-02-03 | Rename `PlateformSpecific` variant in `Action` to `Custom` | 1 | -0/+3 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -16/+11 | ||
2024-01-18 | Make `compatible_window` mandatory in `Compositor` | 1 | -2/+1 | ||
2024-01-18 | Remove `Compositor` window generic | 1 | -5/+9 | ||
And update `glyphon` and `window_clipboard` | |||||
2024-01-17 | Fine-tune event loop of `multi-window` applications | 1 | -96/+123 | ||
2024-01-16 | Refactor `KeyCode` into `Key` and `Location` | 1 | -1/+1 | ||
2024-01-09 | Implemented fetch_maximized and fetch_minimized | 1 | -0/+14 | ||
2023-12-19 | Fix request redraw event handling for multi-window apps | 1 | -71/+73 | ||
2023-12-15 | Update `winit` to `0.29.4` | 1 | -298/+229 | ||
2023-12-02 | Refactor `Windows` abstraction into `WindowManager` | 1 | -308/+312 | ||
2023-12-02 | Separate `Compositor::new` from `Compositor::create_renderer` | 1 | -2/+2 | ||
2023-12-02 | Use `AtomicU64` for `window::Id` | 1 | -22/+22 | ||
2023-11-30 | Use actual floats for logical coordinates | 1 | -44/+45 | ||
2023-11-30 | Move `Event` and `Control` types after `multi_window::run` | 1 | -19/+19 | ||
2023-11-29 | Refactor event loop <-> instance communication in `multi_window` | 1 | -419/+452 | ||
2023-11-29 | Remove unnecessary unsafe `Send` marker in `iced_winit` | 1 | -3/+0 | ||
2023-11-29 | Fix broken intra-doc links | 1 | -19/+4 | ||
2023-11-29 | Fix `clippy` lints | 1 | -10/+14 | ||
2023-07-24 | Moved `exit_on_close_request` to window settings. This now controls whether ↵ | 1 | -58/+90 | ||
each INDIVIDUAL window should close on CloseRequested events. |