summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Emulate `AboutToWait` event on Windows while resizingLibravatar dtzxporter2024-02-071-13/+38
| | | | More details: https://github.com/rust-windowing/winit/issues/3272
* Merge pull request #2210 from MoSal/glyph_cache_capacity_limitLibravatar Héctor Ramón2024-02-072-1/+9
|\ | | | | tiny_skia: Add a capacity limit to `GlyphCache`
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-071-0/+2
| |
| * tiny_skia: Add a capacity limit to `GlyphCache`Libravatar Mohammad AlSaleh2024-02-071-1/+7
|/ | | | | | | | * Trim the cache if `recently_used` size reaches the limit, even if a trim interval hasn't passed. * Shrink `entries` and `recently_used` to the limit when trimming. Signed-off-by: Mohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com>
* Merge pull request #2207 from VAWVAW/mouse-area-interactionLibravatar Héctor Ramón2024-02-072-25/+43
|\ | | | | Add `Interaction` overriding to `MouseArea`
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-071-0/+1
| |
| * Shorten properties in `MouseArea`Libravatar Héctor Ramón Jiménez2024-02-071-20/+18
| |
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-071-0/+1
| |
| * Shorten some `MouseArea` methodsLibravatar Héctor Ramón Jiménez2024-02-071-7/+4
| |
| * Override `MouseArea` interaction only when contents are idleLibravatar Héctor Ramón Jiménez2024-02-071-11/+12
| |
| * Add `Interaction` overriding to `MouseArea`Libravatar vawvaw2024-02-071-0/+20
|/ | | | | Add the ability to use a custom `iced::mouse::Interaction` for a `iced::widget::MouseArea`.
* Merge pull request #2200 from dtzxporter/run-window-callbackLibravatar Héctor Ramón2024-02-077-4/+55
|\ | | | | Provide native window access, via "fetch_native_handle" method on window.
| * Pin `web-sys` dependency to `0.3.67` for nowLibravatar Héctor Ramón Jiménez2024-02-071-1/+1
| | | | | | | | Context: https://github.com/rustwasm/wasm-bindgen/issues/3834
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-071-1/+2
| |
| * Fix documentation of `Action::RunWithHandle`Libravatar Héctor Ramón Jiménez2024-02-071-1/+1
| |
| * Rename `fetch_native_handle` to `run_with_handle` in `window`Libravatar Héctor Ramón Jiménez2024-02-074-27/+30
| |
| * Re-implement against latest iced master. Rename FetchNativeHandle.Libravatar dtzxporter2024-02-075-0/+47
|/
* Merge pull request #2188 from fogarecious/add_docLibravatar Héctor Ramón2024-02-063-0/+11
|\ | | | | Add doc to direct developers to enable features for iced::time::every
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-061-0/+1
| |
| * Fix missing feature flag docs for `time::every`Libravatar fogarecious2024-02-062-0/+10
|/
* Merge pull request #2174 from hicaru/list_picker_eventsLibravatar Héctor Ramón2024-02-063-9/+41
|\ | | | | List picker events
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-061-0/+1
| |
| * Rename `PickList` handlers for consistencyLibravatar Héctor Ramón Jiménez2024-02-061-25/+25
| |
| * Add `on_opened` and `on_closed` handlers for `PickList`Libravatar Rinat2024-02-062-2/+33
|/
* Merge pull request #2235 from fogarecious/add-from-pathbuf-to-svg-handleLibravatar Héctor Ramón2024-02-062-0/+11
|\ | | | | Make the svg function to accept a path
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-051-0/+2
| |
| * Add From<PathBuf> to Svg HandleLibravatar fogarecious2024-02-051-0/+9
|/
* Merge pull request #2237 from iced-rs/fix/mapped-subscription-idLibravatar Héctor Ramón2024-02-052-9/+30
|\ | | | | Use `TypeId` to identify `subscription::Map`
| * Remove redundant `id` field in `subscription::Map`Libravatar Héctor Ramón Jiménez2024-02-051-7/+2
| |
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-051-0/+1
| |
| * Assert closure provided to `Subscription::map` is non-capturingLibravatar Héctor Ramón Jiménez2024-02-051-4/+12
| |
| * Use `TypeId` to identify `subscription::Map`Libravatar Héctor Ramón Jiménez2024-02-051-10/+27
|/
* Fix new `beta` toolchain warningsLibravatar Héctor Ramón Jiménez2024-02-054-16/+14
|
* Fix unused import in `game_of_life` exampleLibravatar Héctor Ramón Jiménez2024-02-051-1/+1
|
* Fix unused `Instant` in `game_of_life` exampleLibravatar Héctor Ramón Jiménez2024-02-051-3/+3
|
* Merge pull request #2170 from varbhat/vbt/colorpalettesLibravatar Héctor Ramón2024-02-035-58/+161
|\ | | | | Add Nord, Dracula, Solarized and Gruvbox themes
| * Capitalize theme names in docs of `Theme`Libravatar Héctor Ramón Jiménez2024-02-031-6/+6
| |
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-031-0/+2
| |
| * Fix import style in `style::theme::palette`Libravatar Héctor Ramón Jiménez2024-02-031-1/+1
| |
| * Use `Theme::ALL` for theme selector in `styling` exampleLibravatar Héctor Ramón Jiménez2024-02-032-74/+28
| |
| * Capitalize theme names in `style::theme::palette`Libravatar Héctor Ramón Jiménez2024-02-031-18/+24
| |
| * Make `color!` macro const-friendlyLibravatar Héctor Ramón Jiménez2024-02-031-14/+9
| |
| * Add Dracula, Nord, Solarized and Grubvox variants to `Theme`Libravatar Var Bhat2024-02-033-19/+160
| |
| * make color! macro expand hex as Color directlyLibravatar Var Bhat2024-02-031-1/+6
|/
* Merge pull request #2147 from Remmirad/mouse_area_hover_eventsLibravatar Héctor Ramón2024-02-032-3/+67
|\ | | | | Add mouse move events to MouseArea
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-031-0/+1
| |
| * Use `Fn` instead of `FnMut` in `MouseArea`Libravatar Héctor Ramón Jiménez2024-02-031-39/+31
| | | | | | | | ... and simplify event logic a bit.
| * Fix lintsLibravatar Remmirad2024-02-031-4/+4
| |
| * Add mouse move events to `MouseArea`Libravatar Remmirad2024-02-031-2/+73
|/
* Merge pull request #2146 from Decodetalkers/customactionLibravatar Héctor Ramón2024-02-034-2/+15
|\ | | | | feat: somewhere to place extra actions by platform