Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update some dependencies | 2024-02-09 | 4 | -14/+14 | |
| | |||||
* | Merge pull request #2221 from Dworv/text-shrink | 2024-02-07 | 6 | -2/+41 | |
|\ | | | | | Text editor shrinking to content | ||||
| * | Update `CHANGELOG` | 2024-02-07 | 1 | -0/+2 | |
| | | |||||
| * | Fix wrapped lines not being considered when measuring `TextEditor` | 2024-02-07 | 5 | -22/+38 | |
| | | |||||
| * | feat: text-editor can shrink to content | 2024-02-07 | 1 | -1/+22 | |
|/ | |||||
* | Merge pull request #2220 from DoomDuck/faster_image_bytes_handle | 2024-02-07 | 2 | -1/+5 | |
|\ | | | | | Use `core::ptr::eq` to speed up `PartialEq` on `image::Bytes` | ||||
| * | Update `CHANGELOG` | 2024-02-07 | 1 | -0/+2 | |
| | | |||||
| * | image::Bytes::PartialEq: use core::ptr::eq to speed up comparison | 2024-02-07 | 1 | -1/+3 | |
| | | |||||
* | | Merge pull request #2219 from GyulyVGC/toggler-border-width | 2024-02-07 | 4 | -8/+15 | |
|\ \ | |/ |/| | Add border widths to `Toggler` `StyleSheet` | ||||
| * | Update `CHANGELOG` | 2024-02-07 | 1 | -0/+1 | |
| | | |||||
| * | add border widths to toggler stylesheet | 2024-02-07 | 3 | -8/+14 | |
|/ | |||||
* | Merge pull request #2214 from dtzxporter/workaround-winit-win32-issues | 2024-02-07 | 2 | -14/+43 | |
|\ | | | | | Workaround issue with winit on windows not resuming the event loop. | ||||
| * | Remove `allow(unused_mut)` in `winit::application` | 2024-02-07 | 1 | -15/+18 | |
| | | |||||
| * | Update `CHANGELOG` | 2024-02-07 | 1 | -0/+1 | |
| | | |||||
| * | Emulate `AboutToWait` event on Windows while resizing | 2024-02-07 | 1 | -13/+38 | |
|/ | | | | More details: https://github.com/rust-windowing/winit/issues/3272 | ||||
* | Merge pull request #2210 from MoSal/glyph_cache_capacity_limit | 2024-02-07 | 2 | -1/+9 | |
|\ | | | | | tiny_skia: Add a capacity limit to `GlyphCache` | ||||
| * | Update `CHANGELOG` | 2024-02-07 | 1 | -0/+2 | |
| | | |||||
| * | tiny_skia: Add a capacity limit to `GlyphCache` | 2024-02-07 | 1 | -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-interaction | 2024-02-07 | 2 | -25/+43 | |
|\ | | | | | Add `Interaction` overriding to `MouseArea` | ||||
| * | Update `CHANGELOG` | 2024-02-07 | 1 | -0/+1 | |
| | | |||||
| * | Shorten properties in `MouseArea` | 2024-02-07 | 1 | -20/+18 | |
| | | |||||
| * | Update `CHANGELOG` | 2024-02-07 | 1 | -0/+1 | |
| | | |||||
| * | Shorten some `MouseArea` methods | 2024-02-07 | 1 | -7/+4 | |
| | | |||||
| * | Override `MouseArea` interaction only when contents are idle | 2024-02-07 | 1 | -11/+12 | |
| | | |||||
| * | Add `Interaction` overriding to `MouseArea` | 2024-02-07 | 1 | -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-callback | 2024-02-07 | 7 | -4/+55 | |
|\ | | | | | Provide native window access, via "fetch_native_handle" method on window. | ||||
| * | Pin `web-sys` dependency to `0.3.67` for now | 2024-02-07 | 1 | -1/+1 | |
| | | | | | | | | Context: https://github.com/rustwasm/wasm-bindgen/issues/3834 | ||||
| * | Update `CHANGELOG` | 2024-02-07 | 1 | -1/+2 | |
| | | |||||
| * | Fix documentation of `Action::RunWithHandle` | 2024-02-07 | 1 | -1/+1 | |
| | | |||||
| * | Rename `fetch_native_handle` to `run_with_handle` in `window` | 2024-02-07 | 4 | -27/+30 | |
| | | |||||
| * | Re-implement against latest iced master. Rename FetchNativeHandle. | 2024-02-07 | 5 | -0/+47 | |
|/ | |||||
* | Merge pull request #2188 from fogarecious/add_doc | 2024-02-06 | 3 | -0/+11 | |
|\ | | | | | Add doc to direct developers to enable features for iced::time::every | ||||
| * | Update `CHANGELOG` | 2024-02-06 | 1 | -0/+1 | |
| | | |||||
| * | Fix missing feature flag docs for `time::every` | 2024-02-06 | 2 | -0/+10 | |
|/ | |||||
* | Merge pull request #2174 from hicaru/list_picker_events | 2024-02-06 | 3 | -9/+41 | |
|\ | | | | | List picker events | ||||
| * | Update `CHANGELOG` | 2024-02-06 | 1 | -0/+1 | |
| | | |||||
| * | Rename `PickList` handlers for consistency | 2024-02-06 | 1 | -25/+25 | |
| | | |||||
| * | Add `on_opened` and `on_closed` handlers for `PickList` | 2024-02-06 | 2 | -2/+33 | |
|/ | |||||
* | Merge pull request #2235 from fogarecious/add-from-pathbuf-to-svg-handle | 2024-02-06 | 2 | -0/+11 | |
|\ | | | | | Make the svg function to accept a path | ||||
| * | Update `CHANGELOG` | 2024-02-05 | 1 | -0/+2 | |
| | | |||||
| * | Add From<PathBuf> to Svg Handle | 2024-02-05 | 1 | -0/+9 | |
|/ | |||||
* | Merge pull request #2237 from iced-rs/fix/mapped-subscription-id | 2024-02-05 | 2 | -9/+30 | |
|\ | | | | | Use `TypeId` to identify `subscription::Map` | ||||
| * | Remove redundant `id` field in `subscription::Map` | 2024-02-05 | 1 | -7/+2 | |
| | | |||||
| * | Update `CHANGELOG` | 2024-02-05 | 1 | -0/+1 | |
| | | |||||
| * | Assert closure provided to `Subscription::map` is non-capturing | 2024-02-05 | 1 | -4/+12 | |
| | | |||||
| * | Use `TypeId` to identify `subscription::Map` | 2024-02-05 | 1 | -10/+27 | |
|/ | |||||
* | Fix new `beta` toolchain warnings | 2024-02-05 | 4 | -16/+14 | |
| | |||||
* | Fix unused import in `game_of_life` example | 2024-02-05 | 1 | -1/+1 | |
| | |||||
* | Fix unused `Instant` in `game_of_life` example | 2024-02-05 | 1 | -3/+3 | |
| | |||||
* | Merge pull request #2170 from varbhat/vbt/colorpalettes | 2024-02-03 | 5 | -58/+161 | |
|\ | | | | | Add Nord, Dracula, Solarized and Gruvbox themes |