Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #1647 from iced-rs/feature/widget-request-redraw | 2023-01-13 | 2 | -18/+0 | |
|\ | | | | | Widget-driven animations | ||||
| * | Draft `Shell:request_redraw` API | 2023-01-12 | 2 | -18/+0 | |
| | | | | | | | | ... and implement `TextInput` cursor blink :tada: | ||||
* | | Fix comment description on crate example | 2023-01-12 | 1 | -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 #1550 from bungoboingo/feat/multidirectional-scrolling | 2023-01-09 | 1 | -1/+2 | |
|\ | | | | | [Feature] Multidirectional scrolling | ||||
| * | Introduce `RelativeOffset` type in `scrollable` | 2023-01-08 | 1 | -1/+2 | |
| | | |||||
| * | Reworked Scrollable to account for lack of widget order guarantees. | 2022-12-29 | 1 | -2/+1 | |
| | | | | | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds. | ||||
| * | Add multidirectional scrolling capabilities to the existing Scrollable. | 2022-12-29 | 1 | -1/+2 | |
| | | |||||
* | | fix doc links | 2023-01-04 | 1 | -1/+1 | |
| | | |||||
* | | Merge pull request #1562 from casperstorm/feat/custom-accessory-content | 2023-01-02 | 1 | -1/+1 | |
|\ \ | |/ |/| | Added ability to customize the handle of a `pick_list` | ||||
| * | Rename `pick_list::AccessoryContent` to `Handle` | 2022-12-14 | 1 | -3/+1 | |
| | | | | | | | | ... and rename `Default` variant to `Arrow`. | ||||
| * | Added ability to customize accessory content. | 2022-11-29 | 1 | -1/+3 | |
| | | |||||
* | | Implement `window::close` action and remove `should_exit` | 2022-12-15 | 1 | -4/+0 | |
| | | |||||
* | | Split vertical orientation into VerticalSlider | 2022-12-13 | 1 | -0/+2 | |
| | | |||||
* | | Bump versions :tada: | 2022-12-07 | 4 | -24/+24 | |
| | | |||||
* | | Remove `appearance` from `Handle` | 2022-12-06 | 1 | -1/+1 | |
|/ | | | | ... and pass it directly to `Renderer::draw` instead. | ||||
* | Add text input operations | 2022-11-11 | 1 | -1/+2 | |
| | |||||
* | Fix outdated links in documentation | 2022-11-10 | 4 | -24/+24 | |
| | |||||
* | Fix broken documentation links | 2022-11-10 | 2 | -2/+3 | |
| | |||||
* | Expose `window` commands in `iced::window` | 2022-11-09 | 1 | -1/+1 | |
| | |||||
* | expose touch module | 2022-10-04 | 2 | -0/+3 | |
| | |||||
* | Merge pull request #1227 from LordRatte/feature-colour-macro | 2022-09-23 | 1 | -2/+2 | |
|\ | | | | | `color!` macro | ||||
| * | Export `color!` macro in `iced` and `iced_native` | 2022-09-23 | 1 | -2/+2 | |
| | | |||||
* | | Merge pull request #1174 from daladim/icon_from_file | 2022-09-23 | 1 | -0/+57 | |
|\ \ | |/ |/| | Added convenience functions for window::icon::Icon | ||||
| * | Added convenience functions for window::icon::Icon | 2022-03-01 | 1 | -0/+57 | |
| | | |||||
* | | Take `Cow` in `Text::new` | 2022-09-21 | 1 | -2/+2 | |
| | | |||||
* | | Expose `overlay::Element` | 2022-09-21 | 1 | -0/+7 | |
| | | |||||
* | | Fix doc comments in `overlay` | 2022-09-21 | 1 | -3/+2 | |
| | | |||||
* | | Make menu style accessible | 2022-09-21 | 2 | -0/+11 | |
| | | |||||
* | | Remove `window::Mode` and introduce `Settings::visible` | 2022-08-18 | 4 | -35/+5 | |
| | | | | | | | | Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows. | ||||
* | | Implement `scrollable::snap_to` operation | 2022-08-04 | 1 | -3/+3 | |
| | | |||||
* | | Implement `focus_previous` operation | 2022-08-04 | 1 | -0/+8 | |
| | | |||||
* | | Implement `focus_next` operation | 2022-08-02 | 2 | -1/+16 | |
| | | | | | | | | ... as well as a `count_focusable` composable helper! | ||||
* | | Implement `Widget::operate` for `TextInput` | 2022-07-28 | 1 | -1/+3 | |
| | | |||||
* | | Use `ToString` for `Text::new` instead of `Into<String>` | 2022-07-27 | 1 | -1/+1 | |
| | | |||||
* | | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 8 | -683/+49 | |
| | | |||||
* | | Fix `clippy` lints for all crates and features | 2022-07-09 | 1 | -0/+1 | |
| | | | | | | | | ... and check those in CI as well! | ||||
* | | Fix further `clippy` lints | 2022-07-09 | 1 | -5/+13 | |
| | | | | | | | | ... and explicitly annotate crates as well. | ||||
* | | Remove redundant `crate::Theme` in alias of `Element` | 2022-07-08 | 2 | -2/+2 | |
| | | |||||
* | | Make `Element` aliases in `iced` compatible with `iced_native` and `iced_pure` | 2022-07-08 | 4 | -9/+15 | |
| | | |||||
* | | Fix missing docs in `iced` crate | 2022-07-08 | 3 | -1/+3 | |
| | | |||||
* | | Make widget aliases in `iced` compatible with `iced_native` | 2022-07-08 | 2 | -80/+58 | |
| | | |||||
* | | Add `theme::Application` styling support to `Sandbox` | 2022-07-08 | 1 | -3/+13 | |
| | | |||||
* | | Add `Style` variant support to `application::StyleSheet` | 2022-07-08 | 1 | -1/+15 | |
| | | |||||
* | | Implement theme styling for `PickList` and `Menu` | 2022-06-07 | 2 | -4/+2 | |
| | | |||||
* | | Implement theme styling for `Container` | 2022-06-07 | 2 | -2/+2 | |
| | | |||||
* | | Implement theme styling for `TextInput` | 2022-06-07 | 2 | -2/+2 | |
| | | |||||
* | | Implement theme styling for `Checkbox` | 2022-06-04 | 2 | -2/+2 | |
| | | |||||
* | | Implement theme styling for `Toggler` | 2022-06-01 | 2 | -2/+2 | |
| | | | | | | | | ... and wire up theming to the `styling` example. | ||||
* | | Implement theme styling for `Radio` | 2022-05-27 | 2 | -6/+6 | |
| | | |||||
* | | Rename `Variant` to `Style` and `Style` to `Appearance` | 2022-05-26 | 2 | -2/+2 | |
| | |