summaryrefslogtreecommitdiffstats
path: root/native/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-07-1289-18230/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # 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
| * Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-0516-1662/+0
| |
| * Converge `Command` types from `iced_futures` and `iced_native`Libravatar Héctor Ramón Jiménez2023-03-055-192/+45
| |
| * Use `no_run` for widget doc-testsLibravatar Héctor Ramón Jiménez2023-03-051-9/+0
| |
| * Remove generic `Hasher` and `Event` from `subscription::Recipe`Libravatar Héctor Ramón Jiménez2023-03-054-265/+2
| |
| * Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-0479-16203/+70
| |
| * Remove `canvas` leftovers in `iced_native`Libravatar Héctor Ramón Jiménez2023-03-031-8/+0
| |
| * Move `Canvas` and `QRCode` to `iced` crateLibravatar Héctor Ramón Jiménez2023-03-0311-1004/+0
| | | | | | | | Rename `canvas` modules to `geometry` in graphics subcrates
| * Fix missing `qr_code` module in `iced_native`Libravatar Héctor Ramón Jiménez2023-03-011-8/+0
| |
| * Implement `Canvas` support for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-0113-1/+1023
| |
| * Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-02-243-5/+5
| |
| * Fix `checkbox` exampleLibravatar Héctor Ramón Jiménez2023-02-241-1/+1
| |
| * Compute grapheme index in `find_cursor_position` for `TextInput`Libravatar Héctor Ramón Jiménez2023-02-242-15/+13
| |
| * Fix useless `f32` conversions and please `clippy`Libravatar Héctor Ramón Jiménez2023-02-241-6/+1
| |
| * Introduce `Weight` enum to `font`Libravatar Héctor Ramón Jiménez2023-02-241-1/+1
| |
| * Fix `overlay::Menu` line heightLibravatar Héctor Ramón Jiménez2023-02-241-5/+5
| |
| * Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-247-25/+19
| |
| * Fix `clippy` lints :tada:Libravatar Héctor Ramón Jiménez2023-02-241-1/+1
| |
| * Implement `font::load` command in `iced_native`Libravatar Héctor Ramón Jiménez2023-02-246-4/+51
| |
| * Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez2023-02-249-63/+83
| |
| * Fix `PickList` line heightLibravatar Héctor Ramón Jiménez2023-02-241-7/+7
| |
| * Fix `TextInput` line heightLibravatar Héctor Ramón Jiménez2023-02-241-1/+5
| |
* | Added simpler MW exampleLibravatar Bingus2023-03-141-0/+2
| |
* | Code cleanup, clearer comments + removed some unnecessary dupe;Libravatar Bingus2023-03-131-13/+2
| | | | | | | | | | Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping;
* | Removed glutin MW support and reverted glutin changes back to Iced master ↵Libravatar bungoboingo2023-02-281-3/+1
| | | | | | | | since it's being axed as we speak.
* | Merge remote-tracking branch 'iced-main/master' into feat/multi-window-supportLibravatar bungoboingo2023-02-282-65/+8
|\ \ | | | | | | | | | | | | | | | # Conflicts: # glutin/src/application.rs # winit/src/icon.rs
| * | Remove `Fill` variant for `Alignment`Libravatar Héctor Ramón Jiménez2023-02-272-65/+8
| |/ | | | | | | | | Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options!
* | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-231-2/+15
|\|
| * Merge pull request #1723 from iced-rs/subscription-runLibravatar Héctor Ramón2023-02-211-2/+15
| |\ | | | | | | Change `subscription::run` to take a function pointer
| | * Change `subscription::run` to take a function pointerLibravatar Héctor Ramón Jiménez2023-02-211-2/+15
| | | | | | | | | | | | ... and rename the old `run` to `run_with_id`.
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-209-25/+27
|\| |
| * | Merge pull request #1721 from casperstorm/feat/no-bleed-sliderLibravatar Héctor Ramón2023-02-202-4/+4
| |\ \ | | |/ | |/| Sliders no longer bleed over rail
| | * Sliders no longer bleed over railLibravatar Casper Storm2023-02-202-4/+4
| | |
| * | Merge pull request #1717 from iced-rs/remove-clone-image-bytesLibravatar Héctor Ramón2023-02-181-3/+3
| |\ \ | | | | | | | | Remove `Clone` bound for `Bytes::new` in `image`
| | * | Remove `Clone` bound for `Bytes::new` in `image`Libravatar Héctor Ramón Jiménez2023-02-181-3/+3
| | | |
| * | | Fix base cursor position during `UserInterface::draw` when overlay is presentLibravatar Héctor Ramón Jiménez2023-02-181-6/+7
| |/ /
| * | Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-185-11/+11
| | |
| * | Fix height of `overlay::Menu`Libravatar Héctor Ramón Jiménez2023-02-181-1/+2
| | |
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-1731-422/+515
|\| | | | | | | | | | | | | | # Conflicts: # winit/src/window.rs
| * | Use `Pixels` for `padding` in `image::Viewer`Libravatar Héctor Ramón Jiménez2023-02-171-6/+6
| | |
| * | Use `Pixels` for `spacing`Libravatar Héctor Ramón Jiménez2023-02-176-58/+51
| | |
| * | Use `f32` for `Icon::size` in `checkbox`Libravatar Héctor Ramón Jiménez2023-02-171-2/+2
| | |
| * | Use `f32` for `Padding`Libravatar Héctor Ramón Jiménez2023-02-179-55/+42
| | |
| * | Use `Pixels` for `size` methodsLibravatar Héctor Ramón Jiménez2023-02-173-7/+7
| | |
| * | Use `Pixels` for `Slider::height` and `VerticalSlider::width`Libravatar Héctor Ramón Jiménez2023-02-172-7/+7
| | |
| * | Fix `Scrollbar` bound calculations in `Scrollable`Libravatar Héctor Ramón Jiménez2023-02-171-9/+12
| | |
| * | Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-179-60/+61
| | |
| * | Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-1724-212/+193
| | |
| * | Wrap image `Bytes` with `Arc` instead of `Data`Libravatar Héctor Ramón Jiménez2023-02-171-35/+18
| | |
| * | image: Allow any kind of data that implements `AsRef<[u8]>` for the image dataLibravatar Sebastian Dröge2023-02-171-7/+64
| | | | | | | | | | | | | | | | | | It's not required anywhere for it to be a plain slice or a `Vec` and this makes it possible to use data allocated in a different way without copying.