summaryrefslogtreecommitdiffstats
path: root/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use `instant` instead of `wasm-timer` in `iced_core`Libravatar Héctor Ramón Jiménez2023-01-122-2/+6
|
* Remove `PartialOrd` implementation for `Rectangle`Libravatar Héctor Ramón Jiménez2023-01-081-6/+0
| | | | | A `PartialOrd` implementation is unclear for this type, since it has a position besides its dimensions.
* Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez2023-01-081-8/+0
|
* Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo2022-12-292-0/+14
| | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds.
* Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus2022-12-291-1/+0
|
* Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez2022-12-201-2/+2
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-12-072-2/+2
|
* Remove unnecessary `clippy` directives in `Color`Libravatar Héctor Ramón Jiménez2022-12-061-2/+0
|
* Fix macro hygiene of `color!`Libravatar Héctor Ramón Jiménez2022-12-061-4/+6
|
* feat: Add Color::into_rgb8Libravatar Michael Aaron Murphy2022-12-061-0/+13
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Remove redundant `std::convert` namespace in `padding`Libravatar Héctor Ramón Jiménez2022-11-081-3/+3
|
* Cast to `u16` first then divide by `2` in `Padding::fit`Libravatar Héctor Ramón Jiménez2022-11-081-4/+4
|
* Rename `Padding::constrain` to `fit`Libravatar Héctor Ramón Jiménez2022-11-081-2/+2
|
* Constrain padding to inner & outer sizesLibravatar Cory Forsstrom2022-10-272-0/+41
|
* Write documentation for `color!` macroLibravatar Héctor Ramón Jiménez2022-09-231-0/+2
|
* Macro for easy colour generationLibravatar Joshua2022-09-231-0/+33
|
* Fix latest `clippy` lintsLibravatar Héctor Ramón Jiménez2022-08-174-4/+4
|
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-092-6/+13
| | | | ... and explicitly annotate crates as well.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-021-1/+1
|
* Add `html_logo_url` to `iced_core` and `iced_lazy`Libravatar Héctor Ramón Jiménez2022-05-021-0/+3
|
* Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-021-1/+1
|
* Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-301-0/+8
|
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-2/+2
|
* Merge pull request #1288 from tarkah/update-palette-0.6Libravatar Héctor Ramón2022-03-171-1/+1
|\ | | | | update palette to 0.6
| * update palette to 0.6Libravatar Cory Forsstrom2022-03-161-1/+1
| |
* | Rename `image` module to `content_fit` in `iced_core`Libravatar Héctor Ramón Jiménez2022-02-162-11/+11
| | | | | | | | Since we are just exposing the `ContentFit` type and not the module `image` at all.
* | Add support for `ContentFit` for `Image`Libravatar Emi Simpson2022-02-162-0/+121
| |
* | Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
| |
* | Replace Zulip links with DiscordLibravatar Héctor Ramón Jiménez2022-01-311-1/+1
| |
* | Implement `time` module for `wasm-bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2022-01-282-5/+6
| |
* | Move `time` module from `iced_native` to `iced_core`Libravatar Héctor Ramón Jiménez2022-01-283-0/+12
|/
* Simplify version of the `palette` dependencyLibravatar Héctor Ramón Jiménez2022-01-121-1/+1
|
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-035-9/+9
|
* Include alignment in the container layout hashLibravatar Imbris2021-12-061-2/+2
|
* Merge `iced_core::text` with `iced_native::text`Libravatar Héctor Ramón Jiménez2021-11-042-30/+0
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-203-66/+65
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-202-1/+24
|
* Add Align::Fill variantLibravatar Cory Forsstrom2021-09-201-0/+3
|
* Merge pull request #1047 from iced-rs/revert-menusLibravatar Héctor Ramón2021-09-154-167/+0
|\ | | | | Revert system menus support
| * Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-154-167/+0
| | | | | | | | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* | Use `Option` to encode empty text case in hit test methodsLibravatar Héctor Ramón Jiménez2021-09-151-3/+3
|/
* Rename `HitTestResult` to `Hit`Libravatar Héctor Ramón Jiménez2021-08-264-8/+8
| | | | ... and also move it to a new `text` module in `iced_core`
* Implement textual hit testingLibravatar Tom2021-08-212-0/+30
|
* Introduce `COMMAND` constant to `keyboard::Modifiers`Libravatar Héctor Ramón Jiménez2021-07-271-0/+12
|
* Add a presets `Menu` to the `game_of_life` exampleLibravatar Héctor Ramón Jiménez2021-07-191-2/+2
|
* Replace `content` with `title` in `menu` moduleLibravatar Héctor Ramón Jiménez2021-07-191-23/+18
|
* Implement `Menu::map` naivelyLibravatar Héctor Ramón Jiménez2021-07-191-5/+39
|