index
:
iced
master
A cross-platform GUI library for Rust, inspired by Elm
cel
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
winit
/
src
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2024-01-16
Use `SmolStr` for `text` field in `KeyPressed` event
Héctor Ramón Jiménez
1
-3
/
+1
2024-01-16
Refactor `KeyCode` into `Key` and `Location`
Héctor Ramón Jiménez
3
-127
/
+346
2024-01-09
Implemented fetch_maximized and fetch_minimized
Calastrophe
2
-0
/
+24
2023-12-20
Batch events for processing in `iced_winit` event loop
Héctor Ramón Jiménez
1
-59
/
+64
2023-12-20
Stop polling in event loop on `RedrawRequest::NextFrame`
Héctor Ramón Jiménez
1
-3
/
+6
2023-12-19
Avoid duplicated `UserInterface::draw` calls in `RedrawRequested`
Héctor Ramón Jiménez
1
-56
/
+39
2023-12-19
Fix request redraw event handling for multi-window apps
Héctor Ramón Jiménez
2
-72
/
+74
2023-12-19
Fix redraw request handling in new event loop logic
Héctor Ramón Jiménez
1
-29
/
+32
2023-12-15
Fix `key_code` conversion for character keys
Héctor Ramón Jiménez
1
-26
/
+26
2023-12-15
Update `winit` to `0.29.4`
Héctor Ramón Jiménez
5
-731
/
+537
2023-12-02
Refactor `Windows` abstraction into `WindowManager`
Héctor Ramón Jiménez
4
-511
/
+470
2023-12-02
Remove unnecessary re-exports in `iced_winit`
Héctor Ramón Jiménez
1
-3
/
+0
2023-12-02
Separate `Compositor::new` from `Compositor::create_renderer`
Héctor Ramón Jiménez
3
-5
/
+5
2023-12-02
Use `AtomicU64` for `window::Id`
Héctor Ramón Jiménez
2
-40
/
+40
2023-11-30
Use actual floats for logical coordinates
Héctor Ramón Jiménez
3
-64
/
+73
2023-11-30
Move `Event` and `Control` types after `multi_window::run`
Héctor Ramón Jiménez
1
-19
/
+19
2023-11-29
Refactor event loop <-> instance communication in `multi_window`
Héctor Ramón Jiménez
1
-419
/
+452
2023-11-29
Remove unnecessary unsafe `Send` marker in `iced_winit`
Héctor Ramón Jiménez
1
-3
/
+0
2023-11-29
Fix broken intra-doc links
Héctor Ramón Jiménez
4
-24
/
+7
2023-11-29
Fix `clippy` lints
Héctor Ramón Jiménez
3
-18
/
+27
2023-11-29
Run `cargo fmt`
Héctor Ramón Jiménez
1
-3
/
+4
2023-11-29
Implement `Command::run` for executing a `Stream` to completion
Héctor Ramón Jiménez
1
-0
/
+3
2023-10-27
Disable maximize window button if `Settings::resizable` is `false`
Héctor Ramón Jiménez
1
-0
/
+6
2023-09-20
Centralize `clippy` lints in `.cargo/config.toml`
Héctor Ramón Jiménez
1
-6
/
+0
2023-09-20
Revert "Chore: Apply clippy map transformations"
Héctor Ramón Jiménez
2
-2
/
+4
2023-09-20
Fix `clippy::redundant-closure-for-method-calls`
Héctor Ramón Jiménez
1
-1
/
+1
2023-09-20
Fix `clippy::default_trait_access`
Héctor Ramón Jiménez
1
-1
/
+1
2023-09-20
Fix `clippy::semicolon_if_nothing_returned`
Héctor Ramón Jiménez
2
-7
/
+7
2023-09-19
Chore: Apply clippy map transformations
Yuri Astrakhan
2
-4
/
+2
2023-09-19
Chore: Inline format args for ease of reading
Yuri Astrakhan
2
-3
/
+3
2023-09-18
Flesh out the `editor` example a bit more
Héctor Ramón Jiménez
2
-1
/
+12
2023-09-09
Deny `broken_intradoc_links` and verify documentation in CI
Héctor Ramón Jiménez
1
-2
/
+3
2023-09-09
Fix majority of unresolved documentation links
Matthias Vogelgesang
2
-4
/
+2
2023-07-28
Bump versions :tada:
Héctor Ramón Jiménez
2
-15
/
+14
2023-07-26
Add app id setting for linux
Cory Forsstrom
2
-1
/
+38
2023-07-24
Moved `exit_on_close_request` to window settings. This now controls whether e...
Bingus
4
-70
/
+120
2023-07-21
refactored window storage;
Bingus
14
-1048
/
+856
2023-07-06
Use `Size` in both `Resize` and `FetchSize` window actions
Héctor Ramón Jiménez
1
-4
/
+7
2023-06-27
Move `Screenshot` inside `window` module
Héctor Ramón Jiménez
1
-2
/
+2
2023-06-22
Add FetchSize command - apply the changes discussed at #water-cooler
Yiğit Özdemir
1
-12
/
+3
2023-06-21
Add command to retrieve window size
Yiğit Özdemir
1
-0
/
+16
2023-06-08
Extend cursor availability to the shell level
Héctor Ramón Jiménez
2
-17
/
+20
2023-06-06
Added offscreen rendering support for wgpu & tiny-skia exposed with the windo...
Bingus
1
-9
/
+32
2023-05-25
Remove unnecessary newline
Héctor Ramón Jiménez
1
-1
/
+0
2023-05-25
Replace `change_always_on_top` action with `change_level`
Héctor Ramón Jiménez
1
-7
/
+2
2023-05-25
Introduce `window::Level` enum
Héctor Ramón Jiménez
2
-11
/
+20
2023-05-23
Make mouse::Button::Other take u16 instead of u8
bbb651
1
-3
/
+1
2023-05-11
Allow unsafe code
Nico Burns
2
-2
/
+4
2023-05-11
Add unsafe block
Nico Burns
1
-1
/
+4
2023-05-11
Fixup option
Nico Burns
1
-5
/
+1
[next]