Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement `SetMode` and `FetchMode` window actions | 2022-08-18 | 7 | -5/+123 | |
| | |||||
* | Remove `window::Mode` and introduce `Settings::visible` | 2022-08-18 | 11 | -121/+52 | |
| | | | | Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows. | ||||
* | Merge pull request #1414 from tarkah/fix/tooltip-inside-scrollable | 2022-08-17 | 1 | -2/+7 | |
|\ | | | | | Don't constrict tooltip text layout to viewport size | ||||
| * | Don't constrict tooltip text layout to viewport size | 2022-08-17 | 1 | -2/+7 | |
|/ | |||||
* | Merge pull request #1405 from tarkah/fix/tooltip-inside-scrollable | 2022-08-17 | 1 | -16/+28 | |
|\ | | | | | Fix Tooltip inside Scrollable | ||||
| * | Add snap within viewport builder | 2022-08-17 | 1 | -15/+27 | |
| | | |||||
| * | Don't clip tooltip | 2022-08-17 | 1 | -1/+1 | |
| | | |||||
* | | Merge pull request #1409 from wuxianucw/master | 2022-08-17 | 1 | -1/+1 | |
|\ \ | |/ |/| | Relax `Fn` trait bounds in `Command` & `Action` | ||||
| * | Use `FnOnce` in `Command::perform` | 2022-08-17 | 6 | -11/+11 | |
| | | | | | | | | ... and revert `FnMut` usage. | ||||
| * | Relax `Fn` trait bounds in `Command` & `Action` | 2022-08-12 | 6 | -12/+12 | |
| | | |||||
* | | Fix latest `clippy` lints | 2022-08-17 | 6 | -7/+7 | |
| | | |||||
* | | Merge pull request #1411 from tarkah/fix/canvas-with-clip-text | 2022-08-16 | 1 | -1/+1 | |
|\ \ | |/ |/| | Don't double translate text clip inside canvas | ||||
| * | Don't double translate text clip | 2022-08-15 | 1 | -1/+1 | |
|/ | |||||
* | Merge pull request #1402 from tarkah/fix/component-operate | 2022-08-09 | 1 | -0/+42 | |
|\ | | | | | Impl operate for Component widget | ||||
| * | Impl operate for Component widget | 2022-08-07 | 1 | -0/+42 | |
|/ | |||||
* | Remove `iced_pure` from `document` workflow | 2022-08-06 | 1 | -1/+0 | |
| | |||||
* | Merge pull request #1393 from iced-rs/deprecate-stateful-widgets | 2022-08-06 | 160 | -14882/+4566 | |
|\ | | | | | Replace stateful widgets with the new `iced_pure` API | ||||
| * | Lay out `UserInterface` after diffing | 2022-08-05 | 1 | -3/+3 | |
| | | |||||
| * | Merge pull request #1399 from iced-rs/widget-operations | 2022-08-05 | 29 | -100/+977 | |
| |\ | | | | | | | Widget Operations | ||||
| | * | Fix documentation in `operation::focusable` | 2022-08-05 | 1 | -3/+4 | |
| | | | |||||
| | * | Remove `widget::state` leftover file | 2022-08-05 | 1 | -1/+0 | |
| | | | |||||
| | * | Write missing documentation in `iced_native` | 2022-08-05 | 8 | -2/+81 | |
| | | | |||||
| | * | Implement `scrollable::snap_to` operation | 2022-08-04 | 13 | -205/+294 | |
| | | | |||||
| | * | Implement `focus_previous` operation | 2022-08-04 | 3 | -11/+59 | |
| | | | |||||
| | * | Build `UserInterface` only once on `Outcome::Chain` | 2022-08-02 | 1 | -9/+9 | |
| | | | |||||
| | * | Implement `focus_next` operation | 2022-08-02 | 4 | -13/+154 | |
| | | | | | | | | | | | | ... as well as a `count_focusable` composable helper! | ||||
| | * | Fix `clippy` lints :tada: | 2022-07-28 | 2 | -8/+6 | |
| | | | |||||
| | * | Focus text inputs in `todos` example | 2022-07-28 | 3 | -5/+31 | |
| | | | |||||
| | * | Implement `Widget::operate` for `TextInput` | 2022-07-28 | 12 | -22/+178 | |
| | | | |||||
| | * | Draft widget operations | 2022-07-28 | 16 | -55/+395 | |
| |/ | |||||
| * | Fix uninitialized `Tree` in `overlay::Menu` | 2022-07-28 | 1 | -0/+2 | |
| | | |||||
| * | Remove `pure` leftovers in `iced_graphics` | 2022-07-27 | 4 | -325/+0 | |
| | | |||||
| * | Fix `clippy` lints | 2022-07-27 | 4 | -11/+11 | |
| | | |||||
| * | Enable `arc` example | 2022-07-27 | 3 | -4/+7 | |
| | | |||||
| * | Update `counter` example in `README` :tada: | 2022-07-27 | 1 | -25/+14 | |
| | | |||||
| * | Use `ToString` for `Text::new` instead of `Into<String>` | 2022-07-27 | 5 | -12/+13 | |
| | | |||||
| * | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 142 | -14448/+3585 | |
| | | |||||
* | | Bump `websocket` example version to fix `audit` workflow | 2022-08-04 | 1 | -1/+1 | |
| | | |||||
* | | Merge pull request #1396 from nicksenger/style/menu-border-radius | 2022-08-04 | 3 | -2/+4 | |
|\ \ | |/ |/| | Allow specification of `border_radius` for `pick_list::Menu` | ||||
| * | feat: allow specification of `border_radius` for `pick_list::Menu` | 2022-08-02 | 3 | -2/+4 | |
|/ | |||||
* | Merge pull request #1326 from maxwell8888/master | 2022-07-27 | 5 | -0/+491 | |
|\ | | | | | add pure version of color_palette example | ||||
| * | Fix small lint in `pure_color_palette` example | 2022-07-27 | 1 | -1/+1 | |
| | | |||||
| * | add pure version of color_palette example | 2022-07-27 | 5 | -0/+491 | |
|/ | |||||
* | Merge pull request #1390 from iced-rs/fix/container-layout | 2022-07-19 | 4 | -2/+17 | |
|\ | | | | | Fix `max_width` and `max_height` for `Container` | ||||
| * | Fix `max_height` for `Scrollable` | 2022-07-18 | 2 | -1/+4 | |
| | | |||||
| * | Fix `max_width` and `max_height` for `Container` | 2022-07-18 | 2 | -1/+13 | |
|/ | |||||
* | Merge pull request #1387 from Luni-4/ci-improvements | 2022-07-15 | 3 | -4/+4 | |
|\ | | | | | CI improvements | ||||
| * | test-ci: Use modern workspace option instead of all | 2022-07-14 | 1 | -2/+2 | |
| | | |||||
| * | format-ci: Add verbose option for format lints | 2022-07-14 | 1 | -1/+1 | |
| | | |||||
| * | lint-ci: Consider clippy warnings as errors | 2022-07-14 | 1 | -1/+1 | |
| | |