summaryrefslogtreecommitdiffstats
path: root/winit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-192-3/+3
| | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
* Deny `broken_intradoc_links` and verify documentation in CILibravatar Héctor Ramón Jiménez2023-09-091-2/+3
|
* Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-092-4/+2
|
* Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-62/+29
| | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-283-18/+17
|
* Add app id setting for linuxLibravatar Cory Forsstrom2023-07-262-1/+38
|
* Merge pull request #1927 from thunderstorm010/masterLibravatar Héctor Ramón2023-07-061-3/+13
|\ | | | | Add command to retrieve window size
| * Use `Size` in both `Resize` and `FetchSize` window actionsLibravatar Héctor Ramón Jiménez2023-07-061-4/+7
| |
| * Add FetchSize command - apply the changes discussed at #water-coolerLibravatar Yiğit Özdemir2023-06-221-12/+3
| |
| * Add command to retrieve window sizeLibravatar Yiğit Özdemir2023-06-211-0/+16
| |
* | Merge pull request #1845 from bungoboingo/feat/offscreen-renderingLibravatar Héctor Ramón2023-06-271-8/+31
|\ \ | | | | | | Feat: Offscreen Rendering & Screenshots
| * | Move `Screenshot` inside `window` moduleLibravatar Héctor Ramón Jiménez2023-06-271-2/+2
| | |
| * | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵Libravatar Bingus2023-06-061-9/+32
| | | | | | | | | | | | window::screenshot command.
* | | Update winitLibravatar Cory Forsstrom2023-06-231-1/+1
| |/ |/|
* | Extend cursor availability to the shell levelLibravatar Héctor Ramón Jiménez2023-06-082-17/+20
|/
* Merge pull request #1738 from nicoburns/update-winit-0.28Libravatar Héctor Ramón2023-05-256-19/+37
|\ | | | | Update to winit 0.28
| * Remove unnecessary newlineLibravatar Héctor Ramón Jiménez2023-05-251-1/+0
| |
| * Replace `change_always_on_top` action with `change_level`Libravatar Héctor Ramón Jiménez2023-05-251-7/+2
| |
| * Introduce `window::Level` enumLibravatar Héctor Ramón Jiménez2023-05-252-11/+20
| | | | | | | | ... and add `level` field to `window::Settings`
| * Update `window_clipboard` dependencyLibravatar Héctor Ramón Jiménez2023-05-251-1/+1
| |
| * Update `winit` dependencyLibravatar Héctor Ramón Jiménez2023-05-251-2/+2
| |
| * Bump winit revLibravatar Nico Burns2023-05-111-1/+1
| |
| * Allow unsafe codeLibravatar Nico Burns2023-05-112-2/+4
| |
| * Add unsafe blockLibravatar Nico Burns2023-05-111-1/+4
| |
| * Fixup optionLibravatar Nico Burns2023-05-111-5/+1
| |
| * Use raw-window-handle instead of HWNDLibravatar Nico Burns2023-05-112-1/+4
| |
| * Fix import pathLibravatar Nico Burns2023-05-111-1/+1
| |
| * Fix build on linuxLibravatar Nico Burns2023-05-111-1/+3
| |
| * Update to winit 0.28Libravatar Nico Burns2023-05-113-7/+16
| |
* | Merge pull request #1797 from bbb651/masterLibravatar Héctor Ramón2023-05-231-3/+1
|\ \ | |/ |/| Make mouse::Button::Other take u16 instead of u8
| * Make mouse::Button::Other take u16 instead of u8Libravatar bbb6512023-05-231-3/+1
| | | | | | | | | | | | | | On wayland keys correspond to <input-event-codes.h>, and they are past the limit of u8, causing the back and forward buttons to be 20 and 19 which definitely isn't right (they should all be around 0x110..=0x117).
* | Enable `doc_auto_cfg` when generating documentationLibravatar Héctor Ramón Jiménez2023-05-111-1/+1
| |
* | Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-176-22/+47
|\|
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-04-134-11/+11
| |
| * Merge pull request #1777 from AirhartAero/linux-window-featuresLibravatar Héctor Ramón2023-04-121-0/+6
| |\ | | | | | | Re-expose winit features for window servers in Linux
| | * re-expose winit features for window servers in LinuxLibravatar Jacob Kiesel2023-03-311-0/+6
| | |
| * | add action set icon while running (#1590)Libravatar Night_Hunter2023-04-124-4/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
| * | Show `NotAllowed` as mouse icon when hovering a disabled `TextInput`Libravatar Héctor Ramón Jiménez2023-04-121-0/+1
| |/
| * winit: Fix replacement of node in wasmLibravatar traxys2023-03-201-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-rendererLibravatar Héctor Ramón Jiménez2023-03-073-4/+4
|\|
| * Update `sysinfo` to `0.28`Libravatar Héctor Ramón Jiménez2023-03-072-3/+3
| |
| * Fixed fullscreen only being possible on primary monitor.Libravatar Bingus2023-03-021-1/+1
| |
* | Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-057-123/+16
| |
* | Converge `Command` types from `iced_futures` and `iced_native`Libravatar Héctor Ramón Jiménez2023-03-051-1/+1
| |
* | Remove generic `Hasher` and `Event` from `subscription::Recipe`Libravatar Héctor Ramón Jiménez2023-03-051-7/+9
| |
* | Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-0410-101/+90
| |
* | Implement basic presentation with `softbuffer` for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-02-251-8/+5
| |
* | Introduce `iced_renderer` subcrate featuring runtime renderer fallbackLibravatar Héctor Ramón Jiménez2023-02-242-2/+2
| |
* | Remove `iced_glutin` and `iced_glow` leftoversLibravatar Héctor Ramón Jiménez2023-02-241-8/+0
| |
* | Implement `font::load` command in `iced_native`Libravatar Héctor Ramón Jiménez2023-02-241-0/+10
|/