summaryrefslogtreecommitdiffstats
path: root/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `Duration` helpers to `time` moduleLibravatar Héctor Ramón Jiménez2025-01-241-0/+25
|
* feat: add a window drag resize taskLibravatar tsuza2025-01-162-0/+29
|
* Use `unwrap_or` in `Theme::default`Libravatar Héctor Ramón Jiménez2025-01-141-4/+8
|
* migrate core::theme to `dark-light` v2Libravatar Ricardo Fernández Serrata2025-01-091-7/+6
|
* Merge pull request #2626 from tvolk131/remove_once_cellLibravatar Héctor2025-01-063-49/+49
|\ | | | | chore: remove once_cell dependency
| * Fix consistency of import orderingLibravatar Héctor Ramón Jiménez2025-01-061-2/+2
| |
| * chore: remove once_cell dependencyLibravatar Tommy Volk2025-01-063-49/+49
| |
* | Merge pull request #2627 from bbb651/more-window-settingsLibravatar Héctor2025-01-061-0/+8
|\ \ | |/ |/| Add `maximized` and `fullscreen` to `window::Settings`
| * Add `window::Settings::fullscreen`Libravatar bbb6512024-10-041-0/+4
| | | | | | | | | | | | | | | | Corresponds to `winit::window::WindowAttributes::with_fullscreen`. Currently only allows to set `Fullscreen::Borderless(None)` meaning borderless on the current monitor, exclusive fullscreen does not make sense for a GUI and iced does not expose monitors yet.
| * Add `window::Settings::maximized`Libravatar bbb6512024-10-041-0/+4
| | | | | | | | Corresponds to `winit::window::WindowAttributes::with_maximized`
* | Moved warning to be between success and dangerLibravatar David Aguiló Domínguez2025-01-061-52/+52
| |
* | Added color for warning for TERRA, and added warning field to Extended with ↵Libravatar David Aguiló Domínguez2025-01-061-0/+33
| | | | | | | | the needed struct and generate
* | Added color for warning for OXOCARBON, used a purple since it is the one ↵Libravatar David Aguiló Domínguez2025-01-061-0/+1
| | | | | | | | used for diagnostic warnings in the nvim theme
* | Added color for warning for MOONFLY and NIGHTFLYLibravatar David Aguiló Domínguez2025-01-061-0/+2
| |
* | Added color for warning for TOKYO_NIGHT and KANAGAWALibravatar David Aguiló Domínguez2025-01-061-0/+6
| |
* | Added color for warning for GRUVBOX and CATPPUCCINLibravatar David Aguiló Domínguez2025-01-061-0/+6
| |
* | Added warning field to palette and assigned colors to it in the LIGHT, DARK, ↵Libravatar David Aguiló Domínguez2025-01-061-0/+16
| | | | | | | | DRACULA, NORD and SOLARIZED(both) themes
* | Fix documentation of `window::Event::Opened`Libravatar Héctor Ramón Jiménez2025-01-061-2/+2
| |
* | Fix broken link in `Settings` documentationLibravatar Héctor Ramón Jiménez2024-12-171-3/+1
| |
* | Reduce size of `Simulator` in `todos` testLibravatar Héctor Ramón Jiménez2024-12-171-0/+1
| |
* | Support custom renderers in `iced_test` through `renderer::Headless` traitLibravatar Héctor Ramón Jiménez2024-12-143-1/+70
| |
* | Add image and hash snapshot-based testing to `iced_test`Libravatar Héctor Ramón Jiménez2024-12-103-0/+144
| |
* | Remove `dbg!` leftover in `core::widget::text`Libravatar Héctor Ramón Jiménez2024-12-101-2/+0
| |
* | Draft `iced_test` crate and test `todos` exampleLibravatar Héctor Ramón Jiménez2024-12-106-55/+231
| |
* | Fix new `clippy` lintsLibravatar Héctor Ramón Jiménez2024-12-026-18/+18
| |
* | Fix cross-axis compression in `layout::flex`Libravatar Héctor Ramón Jiménez2024-11-081-1/+52
| |
* | Rename `Overlay::on_event` to `update`Libravatar Héctor Ramón Jiménez2024-11-063-7/+7
| |
* | Rename `Widget::on_event` to `update`Libravatar Héctor Ramón Jiménez2024-11-052-5/+5
| |
* | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event`Libravatar Héctor Ramón Jiménez2024-11-056-41/+49
| |
* | Split `Shell::request_redraw` into two different methodsLibravatar Héctor Ramón Jiménez2024-11-051-7/+17
| |
* | Introduce consecutive click distance like other toolkits such as gtk,qt, imgui.Libravatar l-const2024-10-141-1/+1
| |
* | Add `PartialEq` derives for widget stylesLibravatar BradySimon2024-10-141-1/+1
|/
* Merge pull request #2608 from ibaryshnikov/haskellLibravatar Héctor2024-10-021-0/+6
|\ | | | | added physical_key to KeyReleased event
| * Add `modified_key` to `keyboard::Event::KeyReleased`Libravatar Héctor Ramón Jiménez2024-10-021-0/+3
| |
| * added physical_key to KeyReleased eventLibravatar ibaryshnikov2024-09-261-0/+3
| |
* | Fix various typosLibravatar bbb6512024-09-293-4/+4
| | | | | | | | Using https://github.com/crate-ci/typos
* | Document `File{Dropped,Hovered,HoveredLeft}` as unsupported on waylandLibravatar bbb6512024-09-291-0/+12
|/ | | | Blocked on https://github.com/rust-windowing/winit/issues/1881
* Fix flex layout of `Fill` elements in a `Shrink` cross axisLibravatar Héctor Ramón Jiménez2024-09-211-6/+7
| | | | | | Instead of collapsing, the `Fill` elements will fill the cross space allocated by the other `Shrink` elements present in the container.
* Drop short-hand notation support for `color!` macroLibravatar Héctor Ramón Jiménez2024-09-201-20/+8
| | | | | | We'd need to use `stringify!` and `str::len` to properly support the short-hand notation; however, we want the macro to work in `const` contexts.
* Show `text` doc examples in multiple placesLibravatar Héctor Ramón Jiménez2024-09-191-2/+44
|
* Implement some `From` traits for `text_input::Id`Libravatar Héctor Ramón Jiménez2024-09-181-1/+7
|
* Remove outdated `window::Id::MAIN` reference in docsLibravatar Héctor Ramón Jiménez2024-09-181-3/+1
|
* Bump version to `0.13.0` :tada:Libravatar Héctor Ramón Jiménez2024-09-181-5/+5
|
* Merge pull request #2551 from airstrike/mouse-interactionsLibravatar Héctor Ramón2024-09-131-0/+7
|\ | | | | Expose additional mouse interaction cursors
| * Add `Copy` and `Help` variants to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2024-09-131-0/+2
| |
| * Rename `ResizingDiagonal*` to `ResizingDiagonally*`Libravatar Héctor Ramón Jiménez2024-09-131-2/+2
| |
| * Expose additional mouse interaction cursorsLibravatar Andy Terra2024-08-161-0/+5
| |
* | Fix broken doc links in `keyboard::key`Libravatar Héctor Ramón Jiménez2024-09-131-6/+6
| |
* | Add `modified_key` to `keyboard::Event`Libravatar Héctor Ramón Jiménez2024-09-131-0/+3
| |
* | Add `physical_key` to `keyboard::Event`Libravatar Héctor Ramón Jiménez2024-09-132-0/+537
| | | | | | | | Co-authored-by: Exidex <16986685+Exidex@users.noreply.github.com>