summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-2725-54/+47
|
* Fix: Clippy lint 'needless_lifetimes'Libravatar 13r0ck2023-01-272-4/+4
|
* Fix: Clippy lint 'let_underscore_future'Libravatar 13r0ck2023-01-272-0/+2
|
* Merge pull request #1676 from ids1024/must_useLibravatar Héctor Ramón2023-01-273-0/+3
|\ | | | | Annotate `Command` and `Subscription` with `#[must_use]`
| * Annotate `Command` and `Subscription` with `#[must_use]`Libravatar Ian Douglas Scott2023-01-263-0/+3
|/ | | | | | Calling a function returning one of these types without using it is almost certainly a mistake. Luckily Rust's `#[must_use]` can help warn about this.
* Merge pull request #1655 from tarkah/feat/group-overlayLibravatar Héctor Ramón2023-01-248-10/+896
|\ | | | | Group Overlay
| * Fix some minor documentation inconsistenciesLibravatar Héctor Ramón Jiménez2023-01-243-5/+8
| |
| * Rename method to is_overLibravatar Cory Forsstrom2023-01-175-37/+13
| |
| * Add toast exampleLibravatar Cory Forsstrom2023-01-173-0/+689
| |
| * New method to determine if overlay contains cursorLibravatar Cory Forsstrom2023-01-174-2/+48
| | | | | | | | | | | | This is needed for "container" overlay's such as `Group` which should only consider it's childrens layouts and not it's own when determining if the cursor is captured by the overlay.
| * Use group overlay for containers w/ childrenLibravatar Cory Forsstrom2023-01-172-8/+13
| |
| * Add group overlay elementLibravatar Cory Forsstrom2023-01-172-0/+167
| |
* | Merge pull request #1660 from Jedsek/patch-1Libravatar Héctor Ramón2023-01-201-7/+2
|\ \ | | | | | | Update example/game_of_life: use [default] on enum
| * | Fix `#[default]` in `preset` for `game_of_life` exampleLibravatar Héctor Ramón2023-01-191-1/+1
| | |
| * | Update preset.rsLibravatar Jedsek2023-01-191-7/+2
|/ /
* | Merge pull request #1649 from iced-rs/generic-widget-operationsLibravatar Héctor Ramón2023-01-144-0/+24
|\| | | | | Introduce `custom` method to `widget::Operation` trait
| * Introduce `custom` method to `widget::Operation` traitLibravatar Héctor Ramón Jiménez2023-01-144-0/+24
|/ | | | This allows users to write operations for their custom widgets.
* Bump leftover version in `README`Libravatar Héctor Ramón Jiménez2023-01-141-1/+1
|
* Bump versions in `README`sLibravatar Héctor Ramón Jiménez2023-01-148-8/+9
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-01-1427-83/+126
|
* Merge pull request #1647 from iced-rs/feature/widget-request-redrawLibravatar Héctor Ramón2023-01-1320-126/+431
|\ | | | | Widget-driven animations
| * Fix grammar of `TODO` comment in `application` modulesLibravatar Héctor Ramón Jiménez2023-01-132-6/+4
| |
| * Clarify documentation of `window::frames`Libravatar Héctor Ramón Jiménez2023-01-131-1/+5
| |
| * Use `instant` instead of `wasm-timer` in `iced_core`Libravatar Héctor Ramón Jiménez2023-01-1211-13/+13
| |
| * Use `instant` to fix Wasm targetLibravatar Héctor Ramón Jiménez2023-01-129-9/+12
| |
| * Replace `Option<Instant>` with `RedrawRequest` enumLibravatar Héctor Ramón Jiménez2023-01-128-31/+84
| |
| * Rename `Focus::at` to `Focus::updated_at` in `text_input`Libravatar Héctor Ramón Jiménez2023-01-121-7/+14
| |
| * Implement `window::frames` subscriptionLibravatar Héctor Ramón Jiménez2023-01-124-4/+43
| | | | | | | | ... and use it in the `solar_system` example :tada:
| * Use short-hand field notation in `TextInput`Libravatar Héctor Ramón Jiménez2023-01-121-1/+1
| |
| * Avoid reblinking cursor when clicking a focused `TextInput`Libravatar Héctor Ramón Jiménez2023-01-121-12/+7
| |
| * Implement widget redraw support in `iced_glutin`Libravatar Héctor Ramón Jiménez2023-01-121-11/+61
| |
| * Draft `Shell:request_redraw` APILibravatar Héctor Ramón Jiménez2023-01-1212-107/+263
| | | | | | | | ... and implement `TextInput` cursor blink :tada:
* | Merge pull request #1648 from wiktor-k/fix-crate-docLibravatar Héctor Ramón2023-01-121-0/+1
|\ \ | | | | | | Fix comment description on crate example
| * | Fix comment description on crate exampleLibravatar Wiktor Kwapisiewicz2023-01-121-0/+1
|/ / | | | | | | | | This tiny PR aligns the comment on the crate example to align to the comment that is in README.md.
* | Merge pull request #1646 from nicksenger/feat/dependency-in-lazyLibravatar Héctor Ramón2023-01-123-6/+10
|\ \ | | | | | | Provide `&Dependency` to `Lazy` widget view fn
| * | feat: provide `&Dependency` to `Lazy` widget `View`Libravatar Nick Senger2023-01-113-6/+10
|/ /
* | Merge pull request #1644 from nicksenger/fix/lazy-widgetLibravatar Héctor Ramón2023-01-114-219/+212
|\ \ | |/ |/| Fix `overlay` implementation for `Lazy` widget
| * clippyLibravatar Nick Senger2023-01-101-3/+9
| |
| * add overlays to `Lazy` exampleLibravatar Nick Senger2023-01-101-24/+130
| |
| * cleanup `Lazy` examplesLibravatar Nick Senger2023-01-103-150/+1
| |
| * fix: `Lazy` widgetLibravatar Nick Senger2023-01-101-45/+75
|/
* Merge pull request #1550 from bungoboingo/feat/multidirectional-scrollingLibravatar Héctor Ramón2023-01-0912-521/+1043
|\ | | | | [Feature] Multidirectional scrolling
| * Avoid dragging scroll area when touching scrollbars for `Scrollable`Libravatar Héctor Ramón Jiménez2023-01-081-1/+4
| |
| * Remove `PartialOrd` implementation for `Rectangle`Libravatar Héctor Ramón Jiménez2023-01-082-7/+3
| | | | | | | | | | A `PartialOrd` implementation is unclear for this type, since it has a position besides its dimensions.
| * Enable horizontal scrolling with `Shift+MouseWheel`Libravatar Héctor Ramón Jiménez2023-01-081-1/+17
| |
| * Add some missing `spacing` to `scrollable` exampleLibravatar Héctor Ramón Jiménez2023-01-081-0/+2
| |
| * Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez2023-01-086-69/+75
| |
| * Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo2022-12-299-691/+618
| | | | | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds.
| * Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus2022-12-2912-563/+1135
| |
* | Merge pull request #1565 from bungoboingo/feat/tracingLibravatar Héctor Ramón2023-01-0917-24/+276
|\ \ | | | | | | [Feature] Profiling