summaryrefslogtreecommitdiffstats
path: root/winit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2124 from iced-rs/disable-maximize-buttonLibravatar Héctor Ramón2023-10-271-0/+6
|\ | | | | Disable maximize window button if `Settings::resizable` is `false`
| * Disable maximize window button if `Settings::resizable` is `false`Libravatar Héctor Ramón Jiménez2023-10-271-0/+6
| |
* | Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-275-17/+11
|\|
| * Centralize `clippy` lints in `.cargo/config.toml`Libravatar Héctor Ramón Jiménez2023-09-201-6/+0
| |
| * Revert "Chore: Apply clippy map transformations"Libravatar Héctor Ramón Jiménez2023-09-202-2/+4
| | | | | | | | This reverts commit c997aad85d7ee6e77085e50e5e599002549d228f.
| * Fix `clippy::redundant-closure-for-method-calls`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| |
| * Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| |
| * Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-202-7/+7
| |
| * Merge pull request #2090 from nyurik/mappingLibravatar Héctor Ramón2023-09-192-4/+2
| |\ | | | | | | Chore: Apply clippy map transformations
| | * Chore: Apply clippy map transformationsLibravatar Yuri Astrakhan2023-09-192-4/+2
| | | | | | | | | | | | Convert `.map().unwrap_or()` to `.map_or()` and similar transformations.
| * | 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.
* / Flesh out the `editor` example a bit moreLibravatar Héctor Ramón Jiménez2023-09-182-1/+12
|/
* 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.