Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename `iced_native` to `iced_runtime` | 2023-03-05 | 18 | -1722/+0 | |
| | |||||
* | Converge `Command` types from `iced_futures` and `iced_native` | 2023-03-05 | 5 | -192/+45 | |
| | |||||
* | Use `no_run` for widget doc-tests | 2023-03-05 | 1 | -9/+0 | |
| | |||||
* | Remove generic `Hasher` and `Event` from `subscription::Recipe` | 2023-03-05 | 4 | -265/+2 | |
| | |||||
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 80 | -16210/+70 | |
| | |||||
* | Remove `canvas` leftovers in `iced_native` | 2023-03-03 | 1 | -8/+0 | |
| | |||||
* | Move `Canvas` and `QRCode` to `iced` crate | 2023-03-03 | 12 | -1009/+0 | |
| | | | | Rename `canvas` modules to `geometry` in graphics subcrates | ||||
* | Fix missing `qr_code` module in `iced_native` | 2023-03-01 | 1 | -8/+0 | |
| | |||||
* | Implement `Canvas` support for `iced_tiny_skia` | 2023-03-01 | 14 | -1/+1029 | |
| | |||||
* | Fix `clippy` lints | 2023-02-24 | 3 | -5/+5 | |
| | |||||
* | Fix `checkbox` example | 2023-02-24 | 1 | -1/+1 | |
| | |||||
* | Compute grapheme index in `find_cursor_position` for `TextInput` | 2023-02-24 | 2 | -15/+13 | |
| | |||||
* | Fix useless `f32` conversions and please `clippy` | 2023-02-24 | 1 | -6/+1 | |
| | |||||
* | Introduce `Weight` enum to `font` | 2023-02-24 | 1 | -1/+1 | |
| | |||||
* | Fix `overlay::Menu` line height | 2023-02-24 | 1 | -5/+5 | |
| | |||||
* | Use `Pixels` for `Text::size` | 2023-02-24 | 7 | -25/+19 | |
| | |||||
* | Fix `clippy` lints :tada: | 2023-02-24 | 1 | -1/+1 | |
| | |||||
* | Implement `font::load` command in `iced_native` | 2023-02-24 | 6 | -4/+51 | |
| | |||||
* | Overhaul `Font` type to allow font family selection | 2023-02-24 | 9 | -63/+83 | |
| | |||||
* | Fix `PickList` line height | 2023-02-24 | 1 | -7/+7 | |
| | |||||
* | Fix `TextInput` line height | 2023-02-24 | 1 | -1/+5 | |
| | |||||
* | Merge pull request #1723 from iced-rs/subscription-run | 2023-02-21 | 1 | -2/+15 | |
|\ | | | | | Change `subscription::run` to take a function pointer | ||||
| * | Change `subscription::run` to take a function pointer | 2023-02-21 | 1 | -2/+15 | |
| | | | | | | | | ... and rename the old `run` to `run_with_id`. | ||||
* | | Merge pull request #1721 from casperstorm/feat/no-bleed-slider | 2023-02-20 | 2 | -4/+4 | |
|\ \ | |/ |/| | Sliders no longer bleed over rail | ||||
| * | Sliders no longer bleed over rail | 2023-02-20 | 2 | -4/+4 | |
| | | |||||
* | | Bump version of `iced_native` :tada: | 2023-02-18 | 1 | -1/+1 | |
| | | |||||
* | | Merge pull request #1717 from iced-rs/remove-clone-image-bytes | 2023-02-18 | 1 | -3/+3 | |
|\ \ | | | | | | | Remove `Clone` bound for `Bytes::new` in `image` | ||||
| * | | Remove `Clone` bound for `Bytes::new` in `image` | 2023-02-18 | 1 | -3/+3 | |
| | | | |||||
* | | | Fix base cursor position during `UserInterface::draw` when overlay is present | 2023-02-18 | 1 | -6/+7 | |
|/ / | |||||
* | | Bump versions :tada: | 2023-02-18 | 7 | -16/+16 | |
| | | |||||
* | | Fix height of `overlay::Menu` | 2023-02-18 | 1 | -1/+2 | |
| | | |||||
* | | Use `Pixels` for `padding` in `image::Viewer` | 2023-02-17 | 1 | -6/+6 | |
| | | |||||
* | | Use `Pixels` for `spacing` | 2023-02-17 | 6 | -58/+51 | |
| | | |||||
* | | Use `f32` for `Icon::size` in `checkbox` | 2023-02-17 | 1 | -2/+2 | |
| | | |||||
* | | Use `f32` for `Padding` | 2023-02-17 | 9 | -55/+42 | |
| | | |||||
* | | Use `Pixels` for `size` methods | 2023-02-17 | 3 | -7/+7 | |
| | | |||||
* | | Use `Pixels` for `Slider::height` and `VerticalSlider::width` | 2023-02-17 | 2 | -7/+7 | |
| | | |||||
* | | Fix `Scrollbar` bound calculations in `Scrollable` | 2023-02-17 | 1 | -9/+12 | |
| | | |||||
* | | Use `Pixels` for `Text::size` | 2023-02-17 | 9 | -60/+61 | |
| | | |||||
* | | Use `f32` in `Length::Units` and rename it to `Fixed` | 2023-02-17 | 24 | -212/+193 | |
| | | |||||
* | | Wrap image `Bytes` with `Arc` instead of `Data` | 2023-02-17 | 1 | -35/+18 | |
| | | |||||
* | | image: Allow any kind of data that implements `AsRef<[u8]>` for the image data | 2023-02-17 | 1 | -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. | ||||
* | | add action to get window id | 2023-02-17 | 1 | -0/+4 | |
| | | |||||
* | | Rename `SetAlwaysOnTop` to `ChangeAlwaysOnTop` | 2023-02-17 | 1 | -8/+14 | |
| | | |||||
* | | update docs and change to SetAlwaysOnTop | 2023-02-17 | 1 | -4/+4 | |
| | | |||||
* | | add always on top action | 2023-02-17 | 1 | -0/+10 | |
| | | |||||
* | | Merge pull request #1707 from casperstorm/feat/checkbox-icon | 2023-02-17 | 1 | -4/+34 | |
|\ \ | | | | | | | Added the ability to change `Checkbox` icon | ||||
| * | | Added the ability to change checkbox icon | 2023-02-16 | 1 | -4/+34 | |
| |/ | |||||
* | | Merge pull request #1695 from nicksenger/widgets/container-ids | 2023-02-16 | 2 | -17/+55 | |
|\ \ | |/ |/| | Provide widgets IDs to `Operation::container` | ||||
| * | container: allow specification of ID and provide to `Operation::container` | 2023-02-16 | 1 | -9/+44 | |
| | |