Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use `instant` instead of `wasm-timer` in `iced_core` | 2023-01-12 | 11 | -13/+13 | |
| | |||||
* | Use `instant` to fix Wasm target | 2023-01-12 | 9 | -9/+12 | |
| | |||||
* | Replace `Option<Instant>` with `RedrawRequest` enum | 2023-01-12 | 8 | -31/+84 | |
| | |||||
* | Rename `Focus::at` to `Focus::updated_at` in `text_input` | 2023-01-12 | 1 | -7/+14 | |
| | |||||
* | Implement `window::frames` subscription | 2023-01-12 | 4 | -4/+43 | |
| | | | | ... and use it in the `solar_system` example :tada: | ||||
* | Use short-hand field notation in `TextInput` | 2023-01-12 | 1 | -1/+1 | |
| | |||||
* | Avoid reblinking cursor when clicking a focused `TextInput` | 2023-01-12 | 1 | -12/+7 | |
| | |||||
* | Implement widget redraw support in `iced_glutin` | 2023-01-12 | 1 | -11/+61 | |
| | |||||
* | Draft `Shell:request_redraw` API | 2023-01-12 | 12 | -107/+263 | |
| | | | | ... and implement `TextInput` cursor blink :tada: | ||||
* | Merge pull request #1550 from bungoboingo/feat/multidirectional-scrolling | 2023-01-09 | 12 | -521/+1043 | |
|\ | | | | | [Feature] Multidirectional scrolling | ||||
| * | Avoid dragging scroll area when touching scrollbars for `Scrollable` | 2023-01-08 | 1 | -1/+4 | |
| | | |||||
| * | Remove `PartialOrd` implementation for `Rectangle` | 2023-01-08 | 2 | -7/+3 | |
| | | | | | | | | | | A `PartialOrd` implementation is unclear for this type, since it has a position besides its dimensions. | ||||
| * | Enable horizontal scrolling with `Shift+MouseWheel` | 2023-01-08 | 1 | -1/+17 | |
| | | |||||
| * | Add some missing `spacing` to `scrollable` example | 2023-01-08 | 1 | -0/+2 | |
| | | |||||
| * | Introduce `RelativeOffset` type in `scrollable` | 2023-01-08 | 6 | -69/+75 | |
| | | |||||
| * | Reworked Scrollable to account for lack of widget order guarantees. | 2022-12-29 | 9 | -691/+618 | |
| | | | | | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds. | ||||
| * | Add multidirectional scrolling capabilities to the existing Scrollable. | 2022-12-29 | 12 | -563/+1135 | |
| | | |||||
* | | Merge pull request #1565 from bungoboingo/feat/tracing | 2023-01-09 | 17 | -24/+276 | |
|\ \ | | | | | | | [Feature] Profiling | ||||
| * | | Add newline at EOF to `.gitignore` | 2023-01-09 | 1 | -1/+1 | |
| | | | |||||
| * | | Restructured everything to make profiling a feature of iced_winit. | 2023-01-09 | 23 | -251/+181 | |
| | | | |||||
| * | | Initial profiling support for Iced. | 2023-01-09 | 20 | -35/+357 | |
|/ / | |||||
* | | Merge pull request #1639 from iced-rs/fix/limits-clamp | 2023-01-05 | 1 | -7/+9 | |
|\ \ | | | | | | | Stop using `f32::clamp` altogether in `layout::Limits` | ||||
| * | | Stop using `f32::clamp` altogether in `layout::Limits` | 2023-01-05 | 1 | -7/+9 | |
| | | | |||||
* | | | Merge pull request #1633 from pop-os/standardize-checkbox-functions | 2023-01-05 | 2 | -3/+3 | |
|\ \ \ | | | | | | | | | use same name & order for checkbox::new and helper | ||||
| * | | | Checkbox: Fix tests with sync'ed helper macro and associated fn | 2023-01-04 | 1 | -1/+1 | |
| | | | | |||||
| * | | | use same name & order for checkbox::new and helper | 2023-01-04 | 2 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The helper function for the checkbox widget switched the order and name of the arguments passed when creating the checkbox widget. This just standardizes the order whether the dev is using the helper or the associated function. Continuation of https://github.com/iced-rs/iced/pull/1616 | ||||
* | | | | Merge pull request #1638 from tarkah/fix/responsive-overlay-layout | 2023-01-05 | 1 | -2/+4 | |
|\ \ \ \ | |_|/ / |/| | | | Fix Responsive overlay placement bug | ||||
| * | | | Fix shadowed variable | 2023-01-05 | 1 | -2/+4 | |
|/ / / | | | | | | | | | | | | | | | | Layout passed into the overlay was accidentally shadowed by the content's layout. So instead of offsetting by the proper layout, the content layout was used instead. | ||||
* | | | Merge pull request #1637 from iced-rs/fix/layout-resolve-panic | 2023-01-05 | 1 | -2/+7 | |
|\ \ \ | | | | | | | | | Fix `Layout::resolve` panicking under some circumstances | ||||
| * | | | Fix `Layout::resolve` panicking under some circumstances | 2023-01-05 | 1 | -2/+7 | |
| |/ / | | | | | | | | | | When `fill` has a bigger `Size` than `max`. | ||||
* | | | Merge pull request #1636 from tarkah/fix/location-copy | 2023-01-04 | 1 | -2/+2 | |
|\ \ \ | | | | | | | | | Make location copy | ||||
| * | | | Fix lint | 2023-01-04 | 1 | -1/+1 | |
| | | | | |||||
| * | | | Make location copy | 2023-01-04 | 1 | -1/+1 | |
| |/ / | |||||
* | | | Merge pull request #1635 from tarkah/fix/pub-count-fields | 2023-01-04 | 1 | -2/+2 | |
|\ \ \ | | | | | | | | | Make count fields pub | ||||
| * | | | Make count fields pub | 2023-01-04 | 1 | -2/+2 | |
| |/ / | |||||
* | | | Merge pull request #1634 from Araxeus/fix-doc-links | 2023-01-04 | 1 | -1/+1 | |
|\ \ \ | |/ / |/| | | fix doc links | ||||
| * | | fix doc links | 2023-01-04 | 1 | -1/+1 | |
|/ / | |||||
* | | Merge pull request #1585 from Night-Hunter-NF/FocusWindow | 2023-01-02 | 2 | -0/+14 | |
|\ \ | | | | | | | add action to make window focus | ||||
| * | | Rename `FocusWindow` to `GainFocus` in `window::Action` | 2023-01-02 | 2 | -4/+4 | |
| | | | |||||
| * | | Add `FocusWindow` to `window::Action` | 2023-01-02 | 2 | -0/+14 | |
|/ / | |||||
* | | Fix "Test Status" badge in `README` | 2023-01-02 | 1 | -1/+1 | |
| | | |||||
* | | Merge pull request #1562 from casperstorm/feat/custom-accessory-content | 2023-01-02 | 4 | -19/+88 | |
|\ \ | | | | | | | Added ability to customize the handle of a `pick_list` | ||||
| * | | Rename `pick_list::AccessoryContent` to `Handle` | 2022-12-14 | 4 | -39/+34 | |
| | | | | | | | | | | | | ... and rename `Default` variant to `Arrow`. | ||||
| * | | Added accessory_content_color to appreance. | 2022-11-29 | 3 | -1/+5 | |
| | | | |||||
| * | | Correctly pass accessory content. | 2022-11-29 | 1 | -0/+2 | |
| | | | |||||
| * | | Added ability to customize accessory content. | 2022-11-29 | 4 | -19/+87 | |
| | | | |||||
* | | | Merge pull request #1584 from Night-Hunter-NF/RequestUserAttention | 2023-01-02 | 6 | -12/+75 | |
|\ \ \ | | | | | | | | | add action to request user attention | ||||
| * | | | Create conversion function for `user_attention` in `iced_winit` | 2023-01-02 | 3 | -11/+21 | |
| | | | | |||||
| * | | | Add `RequestUserAttention` to `window::Action` | 2023-01-02 | 4 | -11/+64 | |
|/ / / | |||||
* | | | Merge pull request #1622 from rs017991/text_input_shift_click | 2023-01-02 | 1 | -2/+10 | |
|\ \ \ | | | | | | | | | TextInput: SHIFT+Left Click to Select |