summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix `expect` message in `iced_tiny_skia::vector`Libravatar Héctor Ramón Jiménez2023-12-111-1/+1
|
* implement svg text fix for native rendererLibravatar Cory Frenette2023-12-101-5/+18
| | | | Signed-off-by: Cory Frenette <cory@frenette.dev>
* Merge pull request #2159 from bungoboingo/fix/text-editor-styleLibravatar Héctor Ramón2023-12-071-0/+9
|\ | | | | [Fix] Add ability to change style of `TextEditor`
| * Added the ability to change the style of a TextEditorLibravatar Bingus2023-12-061-0/+9
|/
* Merge pull request #1964 from bungoboingo/feat/multi-window-supportLibravatar Héctor Ramón2023-12-0559-761/+3020
|\ | | | | [Feature] 🪟 Multi Window 🪟 .. redux!
| * Refactor `Windows` abstraction into `WindowManager`Libravatar Héctor Ramón Jiménez2023-12-024-511/+470
| |
| * Remove unnecessary re-exports in `iced_winit`Libravatar Héctor Ramón Jiménez2023-12-021-3/+0
| |
| * Separate `Compositor::new` from `Compositor::create_renderer`Libravatar Héctor Ramón Jiménez2023-12-027-75/+35
| |
| * Use `AtomicU64` for `window::Id`Libravatar Héctor Ramón Jiménez2023-12-029-212/+228
| |
| * Use actual floats for logical coordinatesLibravatar Héctor Ramón Jiménez2023-11-3012-136/+165
| |
| * Move `Event` and `Control` types after `multi_window::run`Libravatar Héctor Ramón Jiménez2023-11-301-19/+19
| |
| * Refactor event loop <-> instance communication in `multi_window`Libravatar Héctor Ramón Jiménez2023-11-291-419/+452
| |
| * Fix unused import in `multi_window::application`Libravatar Héctor Ramón Jiménez2023-11-291-2/+1
| |
| * Remove unnecessary unsafe `Send` marker in `iced_winit`Libravatar Héctor Ramón Jiménez2023-11-291-3/+0
| |
| * Fix `renderer` method in `iced_renderer::Compositor`Libravatar Héctor Ramón Jiménez2023-11-291-4/+0
| |
| * Fix broken intra-doc linksLibravatar Héctor Ramón Jiménez2023-11-298-27/+12
| |
| * Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-11-294-19/+28
| |
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2023-11-291-3/+4
| |
| * Move `multi-window` feature before the `advanced` oneLibravatar Héctor Ramón Jiménez2023-11-291-2/+2
| |
| * Use `workspace` dependency for `raw-window-handle`Libravatar Héctor Ramón Jiménez2023-11-292-3/+2
| |
| * Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-29331-3997/+12106
| |\
| * | Moved `exit_on_close_request` to window settings. This now controls whether ↵Libravatar Bingus2023-07-248-88/+133
| | | | | | | | | | | | each INDIVIDUAL window should close on CloseRequested events.
| * | refactored window storage;Libravatar Bingus2023-07-2156-1823/+1512
| | | | | | | | | | | | | | | new helper window events (Destroyed, Created); clippy + fmt;
| * | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-07-12394-13256/+17244
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # 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
| * | | Added per-window theme support.Libravatar Bingus2023-03-154-19/+35
| | | |
| * | | Added simpler MW exampleLibravatar Bingus2023-03-146-560/+742
| | | |
| * | | Code cleanup, clearer comments + removed some unnecessary dupe;Libravatar Bingus2023-03-1311-104/+60
| | | | | | | | | | | | | | | | | | | | 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-supportLibravatar Bingus2023-03-136-7/+25
| |\ \ \
| * | | | Removed glutin MW support and reverted glutin changes back to Iced master ↵Libravatar bungoboingo2023-02-2815-1375/+129
| | | | | | | | | | | | | | | | | | | | since it's being axed as we speak.
| * | | | Merge remote-tracking branch 'iced-main/master' into feat/multi-window-supportLibravatar bungoboingo2023-02-2816-103/+79
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # glutin/src/application.rs # winit/src/icon.rs
| * \ \ \ \ Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-231-2/+15
| |\ \ \ \ \
| * | | | | | Fixed state syncing issue with MW.Libravatar Bingus2023-02-221-20/+23
| | | | | | |
| * | | | | | Cargo fixLibravatar Bingus2023-02-204-173/+191
| | | | | | |
| * | | | | | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-2038-109/+162
| |\ \ \ \ \ \
| * | | | | | | Fixed widget operationsLibravatar Bingus2023-02-171-2/+2
| | | | | | | |
| * | | | | | | Iced master merge (again)Libravatar Bingus2023-02-175-12/+34
| | | | | | | |
| * | | | | | | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-1770-542/+807
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # winit/src/window.rs
| * | | | | | | | Fixed widget animations implementationLibravatar Bingus2023-02-174-39/+95
| | | | | | | | |
| * | | | | | | | Merged in iced masterLibravatar Bingus2023-02-154-5/+5
| | | | | | | | |
| * | | | | | | | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-1555-224/+1218
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # native/src/command/action.rs # native/src/window/action.rs # winit/src/window.rs
| * | | | | | | | | Widget operations for multi-window.Libravatar Bingus2023-02-154-115/+171
| | | | | | | | | |
| * | | | | | | | | Redraw request events for multiwindow.Libravatar Bingus2023-02-153-6/+20
| | | | | | | | | |
| * | | | | | | | | Added window::Id to multi_window application's scale_factorLibravatar Bingus2023-01-184-6/+14
| | | | | | | | | |
| * | | | | | | | | New iced changesLibravatar Bingus2023-01-184-5/+6
| | | | | | | | | |
| * | | | | | | | | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-01-1857-443/+812
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # examples/events/src/main.rs # glutin/src/application.rs # native/src/window.rs # winit/src/window.rs
| * | | | | | | | | | Added tracing to multi_window applicationsLibravatar Bingus2023-01-137-36/+94
| | | | | | | | | | |
| * | | | | | | | | | Removed glutin's individual multi_window state since 0.30+ doesn't have its ↵Libravatar bungoboingo2023-01-092-232/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | own event crate anymore
| * | | | | | | | | | FormattingLibravatar bungoboingo2023-01-094-25/+81
| | | | | | | | | | |
| * | | | | | | | | | Implemented window title update functionality for multiwindow.Libravatar bungoboingo2023-01-0914-235/+262
| | | | | | | | | | |
| * | | | | | | | | | Fix multi-window example for Glutin on MacOSLibravatar Bingus2023-01-093-75/+90
| | | | | | | | | | |