Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Use `AtomicU64` for `window::Id` | 2023-12-02 | 1 | -18/+18 | ||
| | ||||||
* | Use actual floats for logical coordinates | 2023-11-30 | 1 | -4/+5 | ||
| | ||||||
* | Fix `clippy` lints | 2023-11-29 | 1 | -3/+4 | ||
| | ||||||
* | Merge branch 'master' into feat/multi-window-support | 2023-11-29 | 1 | -10/+19 | ||
|\ | ||||||
| * | Implement `Command::run` for executing a `Stream` to completion | 2023-11-29 | 1 | -0/+3 | ||
| | | ||||||
| * | Merge branch 'master' into text-editor | 2023-10-27 | 1 | -7/+7 | ||
| |\ | ||||||
| | * | Fix `clippy::semicolon_if_nothing_returned` | 2023-09-20 | 1 | -5/+5 | ||
| | | | ||||||
| | * | Chore: Inline format args for ease of reading | 2023-09-19 | 1 | -2/+2 | ||
| | | | | | | | | | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read. | |||||
| * | | Flesh out the `editor` example a bit more | 2023-09-18 | 1 | -1/+8 | ||
| |/ | ||||||
* | | Moved `exit_on_close_request` to window settings. This now controls whether ↵ | 2023-07-24 | 1 | -1/+3 | ||
| | | | | | | | | each INDIVIDUAL window should close on CloseRequested events. | |||||
* | | refactored window storage; | 2023-07-21 | 1 | -63/+23 | ||
| | | | | | | | | | | new helper window events (Destroyed, Created); clippy + fmt; | |||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-07-12 | 1 | -81/+127 | ||
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Cargo.toml # core/src/window/icon.rs # core/src/window/id.rs # core/src/window/position.rs # core/src/window/settings.rs # examples/integration/src/main.rs # examples/integration_opengl/src/main.rs # glutin/src/application.rs # native/src/subscription.rs # native/src/window.rs # runtime/src/window/action.rs # src/lib.rs # src/window.rs # winit/Cargo.toml # winit/src/application.rs # winit/src/icon.rs # winit/src/settings.rs # winit/src/window.rs | |||||
| * | Merge pull request #1927 from thunderstorm010/master | 2023-07-06 | 1 | -3/+13 | ||
| |\ | | | | | | | Add command to retrieve window size | |||||
| | * | Use `Size` in both `Resize` and `FetchSize` window actions | 2023-07-06 | 1 | -4/+7 | ||
| | | | ||||||
| | * | Add FetchSize command - apply the changes discussed at #water-cooler | 2023-06-22 | 1 | -12/+3 | ||
| | | | ||||||
| | * | Add command to retrieve window size | 2023-06-21 | 1 | -0/+16 | ||
| | | | ||||||
| * | | Merge pull request #1845 from bungoboingo/feat/offscreen-rendering | 2023-06-27 | 1 | -8/+31 | ||
| |\ \ | | |/ | |/| | Feat: Offscreen Rendering & Screenshots | |||||
| | * | Move `Screenshot` inside `window` module | 2023-06-27 | 1 | -2/+2 | ||
| | | | ||||||
| | * | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵ | 2023-06-06 | 1 | -9/+32 | ||
| | | | | | | | | | | | | window::screenshot command. | |||||
| * | | Extend cursor availability to the shell level | 2023-06-08 | 1 | -4/+4 | ||
| |/ | ||||||
| * | Replace `change_always_on_top` action with `change_level` | 2023-05-25 | 1 | -7/+2 | ||
| | | ||||||
| * | Update to winit 0.28 | 2023-05-11 | 1 | -1/+6 | ||
| | | ||||||
| * | Merge branch 'master' into advanced-text | 2023-04-17 | 1 | -7/+14 | ||
| |\ | ||||||
| | * | add action set icon while running (#1590) | 2023-04-12 | 1 | -0/+3 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * set windows icon live action * change get icon to insto raw * remove mobile docs * format * fix format * add file methods to Icon * Rename action to `ChangeIcon` and tidy up `Icon` modules * Fix documentation of `icon::Error` * Remove unnecessary `\` in `icon` documentation * Remove `etc.` from `Icon` documentation --------- Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com> | |||||
| | * | winit: Fix replacement of node in wasm | 2023-03-20 | 1 | -7/+11 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | Replacing a node ends up with the following error: Node.replaceChild: Child to be replaced is not a child of this node It seems that Node.replaceChild is not recommended, and instead Element.replaceWith should be preferred. Using it avoids the panic. | |||||
| * | | Merge branch 'master' into feature/software-renderer | 2023-03-07 | 1 | -1/+1 | ||
| |\| | ||||||
| * | | Rename `iced_native` to `iced_runtime` | 2023-03-05 | 1 | -7/+7 | ||
| | | | ||||||
| * | | Converge `Command` types from `iced_futures` and `iced_native` | 2023-03-05 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Remove generic `Hasher` and `Event` from `subscription::Recipe` | 2023-03-05 | 1 | -7/+9 | ||
| | | | ||||||
| * | | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -40/+37 | ||
| | | | ||||||
| * | | Implement basic presentation with `softbuffer` for `iced_tiny_skia` | 2023-02-25 | 1 | -8/+5 | ||
| | | | ||||||
| * | | Introduce `iced_renderer` subcrate featuring runtime renderer fallback | 2023-02-24 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Implement `font::load` command in `iced_native` | 2023-02-24 | 1 | -0/+10 | ||
| | | | ||||||
* | | | Code cleanup, clearer comments + removed some unnecessary dupe; | 2023-03-13 | 1 | -1/+1 | ||
| | | | | | | | | | | | | | | | Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping; | |||||
* | | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-03-13 | 1 | -1/+1 | ||
|\ \ \ | | |/ | |/| | ||||||
| * | | Fixed fullscreen only being possible on primary monitor. | 2023-03-02 | 1 | -1/+1 | ||
| |/ | ||||||
* | | Removed glutin MW support and reverted glutin changes back to Iced master ↵ | 2023-02-28 | 1 | -1/+1 | ||
| | | | | | | | | since it's being axed as we speak. | |||||
* | | Merge remote-tracking branch 'iced-main/master' into feat/multi-window-support | 2023-02-28 | 1 | -1/+1 | ||
|\| | | | | | | | | | | | # Conflicts: # glutin/src/application.rs # winit/src/icon.rs | |||||
| * | Remove logging large bytes arrays | 2023-02-23 | 1 | -1/+1 | ||
| | | ||||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-02-17 | 1 | -9/+20 | ||
|\| | | | | | | | | | # Conflicts: # winit/src/window.rs | |||||
| * | add action to get window id | 2023-02-17 | 1 | -0/+5 | ||
| | | ||||||
| * | Rename `SetAlwaysOnTop` to `ChangeAlwaysOnTop` | 2023-02-17 | 1 | -11/+14 | ||
| | | ||||||
| * | update docs and change to SetAlwaysOnTop | 2023-02-17 | 1 | -1/+1 | ||
| | | ||||||
| * | add always on top action | 2023-02-17 | 1 | -0/+3 | ||
| | | ||||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-02-15 | 1 | -7/+17 | ||
|\| | | | | | | | | | | | | | # Conflicts: # native/src/command/action.rs # native/src/window/action.rs # winit/src/window.rs | |||||
| * | Hide window until `Renderer` has been initialized | 2023-02-11 | 1 | -5/+15 | ||
| | | ||||||
| * | Improve consistency of `window::Action` | 2023-01-31 | 1 | -1/+1 | ||
| | | ||||||
| * | Fix: Clippy lint 'uninlined_format_args' | 2023-01-27 | 1 | -1/+1 | ||
| | | ||||||
* | | New iced changes | 2023-01-18 | 1 | -0/+1 | ||
| | | ||||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-01-18 | 1 | -11/+68 | ||
|\| | | | | | | | | | | | | | | | # Conflicts: # examples/events/src/main.rs # glutin/src/application.rs # native/src/window.rs # winit/src/window.rs |