Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -230/+0 | ||
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/+8 | ||
2024-02-13 | Rename `show_window_menu` to `show_system_menu` | 1 | -5/+5 | ||
2024-02-13 | Add `show_window_menu` action | 1 | -0/+9 | ||
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 | Fix documentation of `Action::RunWithHandle` | 1 | -1/+1 | ||
2024-02-07 | Rename `fetch_native_handle` to `run_with_handle` in `window` | 1 | -5/+5 | ||
2024-02-07 | Re-implement against latest iced master. Rename FetchNativeHandle. | 1 | -0/+10 | ||
2024-01-09 | Implemented fetch_maximized and fetch_minimized | 1 | -0/+23 | ||
2023-12-02 | Use `AtomicU64` for `window::Id` | 1 | -72/+82 | ||
2023-11-30 | Use actual floats for logical coordinates | 1 | -15/+10 | ||
2023-11-29 | Fix broken intra-doc links | 1 | -1/+1 | ||
2023-07-21 | refactored window storage; | 1 | -2/+2 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-07-06 | Use `Size` in both `Resize` and `FetchSize` window actions | 1 | -12/+5 | ||
2023-06-27 | Move `Screenshot` inside `window` module | 1 | -1/+1 | ||
2023-06-22 | Add FetchSize command - apply the changes discussed at #water-cooler | 1 | -15/+3 | ||
2023-06-21 | Add command to retrieve window size | 1 | -0/+16 | ||
2023-06-06 | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵ | 1 | -0/+9 | ||
window::screenshot command. | |||||
2023-05-25 | Replace `change_always_on_top` action with `change_level` | 1 | -16/+10 | ||
2023-03-05 | Rename `iced_native` to `iced_runtime` | 1 | -0/+0 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -2/+2 | ||
2023-02-17 | add action to get window id | 1 | -0/+4 | ||
2023-02-17 | Rename `SetAlwaysOnTop` to `ChangeAlwaysOnTop` | 1 | -8/+14 | ||
2023-02-17 | update docs and change to SetAlwaysOnTop | 1 | -4/+4 | ||
2023-02-17 | add always on top action | 1 | -0/+10 | ||
2023-02-15 | Merged in iced master | 1 | -2/+2 | ||
2023-01-31 | Write missing `window::Action` helpers in `window` | 1 | -1/+1 | ||
2023-01-31 | Improve consistency of `window::Action` | 1 | -8/+9 | ||
2023-01-27 | Fix: Clippy lint 'uninlined_format_args' | 1 | -6/+5 | ||
2023-01-09 | Implemented window title update functionality for multiwindow. | 1 | -4/+4 | ||
2023-01-09 | introduce `window::spawn` and `window::close` | 1 | -3/+12 | ||
2023-01-02 | Rename `FocusWindow` to `GainFocus` in `window::Action` | 1 | -3/+3 | ||
2023-01-02 | Add `FocusWindow` to `window::Action` | 1 | -0/+13 | ||
2023-01-02 | Add `RequestUserAttention` to `window::Action` | 1 | -5/+25 | ||
2022-12-15 | Implement `window::close` action and remove `should_exit` | 1 | -0/+4 | ||
2022-12-13 | Remove mention of iOS and Android in `window::action` | 1 | -1/+1 | ||
2022-12-10 | add toggle decorations action | 1 | -0/+7 | ||
2022-10-11 | feat: Add window minimize support | 1 | -0/+4 | ||
2022-10-11 | feat: Add window maximize support | 1 | -0/+8 | ||
2022-10-11 | feat: Add window drag support from winit | 1 | -0/+8 | ||
Exposes access to the winit window's window_drag method as an action. | |||||
2022-09-15 | Document that `window::Action::Move` is unsupported on Wayland | 1 | -0/+2 | ||
https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_outer_position notes that this isn't supported on Wayland. Wayland by design doesn't allow applications to position windows arbitrarily. GTK4 in comparison removed `gtk_window_move()` (which naturally didn't work on Wayland). | |||||
2022-08-18 | Implement `SetMode` and `FetchMode` window actions | 1 | -2/+45 | ||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -0/+18 | ||
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!) |