Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Flesh out the `markdown` example a bit more | 2024-07-18 | 4 | -125/+337 | ||
| | ||||||
* | Implement `rich_text` widget and `markdown` example | 2024-07-17 | 2 | -0/+184 | ||
| | ||||||
* | Fix `Scrollable::spacing` not embedding the `Scrollbar` | 2024-07-16 | 1 | -8/+6 | ||
| | ||||||
* | Rename `embed_*` in `Scrollable` to simply `spacing` | 2024-07-12 | 1 | -6/+8 | ||
| | ||||||
* | Improve `Border` ergonomics | 2024-07-12 | 2 | -18/+26 | ||
| | ||||||
* | Improve `Padding` ergonomics | 2024-07-12 | 2 | -6/+6 | ||
| | | | | | We expose free functions for creating a `Padding` and methods with the same name to modify its fields. | |||||
* | Re-export variants of `Length` and `alignment` types | 2024-07-12 | 44 | -269/+239 | ||
| | ||||||
* | Introduce helper methods for alignment for all widgets | 2024-07-12 | 37 | -210/+134 | ||
| | ||||||
* | Add support for embedded scrollbars for `scrollable` | 2024-07-11 | 1 | -31/+30 | ||
| | | | | Co-authored-by: dtzxporter <dtzxporter@users.noreply.github.com> | |||||
* | Add `iced` widget helper to display the iced logo :comet: | 2024-07-11 | 2 | -28/+16 | ||
| | ||||||
* | Remove `load` method from `application` and `daemon` | 2024-07-09 | 7 | -56/+57 | ||
| | | | | | If you need to run a `Task` during boot, use `run_with` instead! | |||||
* | Hide `Subscription` internals | 2024-07-05 | 3 | -60/+58 | ||
| | | | | .. and introduce `stream::channel` helper | |||||
* | Remove `window::Id::MAIN` constant | 2024-06-20 | 5 | -8/+10 | ||
| | ||||||
* | Introduce `daemon` API and unify shell runtimes | 2024-06-19 | 36 | -72/+81 | ||
| | ||||||
* | Rename `Step` to `Screen` in `tour` example | 2024-06-16 | 1 | -51/+51 | ||
| | ||||||
* | Flatten state in `tour` example | 2024-06-16 | 1 | -339/+261 | ||
| | ||||||
* | Rename `window::closings` to `window::close_events` | 2024-06-16 | 1 | -1/+1 | ||
| | ||||||
* | Use all themes in `multi_window` example | 2024-06-14 | 1 | -5/+1 | ||
| | ||||||
* | Simplify `WindowOpened` message handler in `multi_window` example | 2024-06-14 | 1 | -6/+5 | ||
| | ||||||
* | Use `Task` chaining to simplify `multi_window` example | 2024-06-14 | 2 | -86/+75 | ||
| | ||||||
* | Replace `Command` with a new `Task` API with chain support | 2024-06-14 | 16 | -106/+102 | ||
| | ||||||
* | Introduce `subscription::Event` | 2024-06-11 | 1 | -12/+5 | ||
| | | | | ... and remove `PlatformSpecific` from `Event` | |||||
* | Introduce `window::Id` to `Event` subscriptions | 2024-06-10 | 7 | -17/+14 | ||
| | | | | And remove `window::Id` from `Event` altogether. | |||||
* | Link to the `latest` branch in examples' `README` | 2024-05-27 | 1 | -4/+2 | ||
| | ||||||
* | Merge branch 'master' into feat/text-macro | 2024-05-23 | 53 | -1037/+926 | ||
|\ | ||||||
| * | Fix compilation of `integration` example in `release` mode | 2024-05-22 | 1 | -0/+2 | ||
| | | | | | | | | Fixes #2447. | |||||
| * | Merge pull request #2421 from skygrango/wasm/update-clock-example | 2024-05-18 | 2 | -14/+11 | ||
| |\ | | | | | | | Fix `clock` example doesn't get the correct local time under unix system | |||||
| | * | Remove redundant default `chrono` feature in `clock` example | 2024-05-18 | 1 | -1/+1 | ||
| | | | ||||||
| | * | Simplify `clock` example a bit | 2024-05-18 | 1 | -12/+12 | ||
| | | | ||||||
| | * | Fix `clock` example doesn't get the correct local time under unix system | 2024-05-03 | 2 | -16/+13 | ||
| | | | | | | | | | | | | | | | There is a long-standing problem (https://github.com/time-rs/time/issues/293) that has not yet been solved by time-rs Switch to chrono as it seemed to solve the problem (https://github.com/chronotope/chrono/pull/677) | |||||
| * | | Ask for explicit `Length` in `center_*` methods | 2024-05-13 | 11 | -22/+27 | ||
| | | | ||||||
| * | | Update `winit` to `0.30` | 2024-05-07 | 3 | -309/+308 | ||
| | | | ||||||
| * | | Fix windows fighting over shared `image::Cache` | 2024-05-06 | 1 | -1/+1 | ||
| | | | | | | | | | | | | Image caches are local to each window now. | |||||
| * | | Improve layout of `ferris` example :crab: | 2024-05-03 | 1 | -16/+16 | ||
| | | | ||||||
| * | | Introduce dynamic `opacity` support for `Image` and `Svg` | 2024-05-03 | 1 | -17/+28 | ||
| | | | ||||||
| * | | Auto-focus `text_input` in `websocket` example | 2024-05-03 | 1 | -2/+7 | ||
| | | | ||||||
| * | | Introduce `center` widget helper | 2024-05-03 | 33 | -314/+145 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | ... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result. | |||||
| * | | Add `spin` mode to `ferris` example :crab: | 2024-05-03 | 2 | -15/+55 | ||
| | | | ||||||
| * | | Fix `Image::bounds` when rotation present in `iced_graphics` | 2024-05-03 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Create `ferris` example to showcase `ContentFit` and `Rotation` | 2024-05-02 | 2 | -0/+171 | ||
| |/ | ||||||
| * | Make `image::Id` actually opaque | 2024-05-01 | 2 | -2/+2 | ||
| | | ||||||
| * | Enable logging in `clock` example | 2024-04-30 | 2 | -0/+3 | ||
| | | ||||||
| * | Invalidate text uploads after atlas trimming | 2024-04-30 | 2 | -0/+3 | ||
| | | ||||||
| * | Fix `clippy` lint in `the_matrix` example | 2024-04-30 | 1 | -6/+1 | ||
| | | ||||||
| * | Use shared `Cache` group in `the_matrix` example | 2024-04-30 | 1 | -15/+17 | ||
| | | ||||||
| * | Create `the_matrix` example | 2024-04-27 | 2 | -0/+128 | ||
| | | ||||||
| * | Use `hover` widget in `bezier_tool` example | 2024-04-27 | 1 | -11/+15 | ||
| | | ||||||
| * | Simplify `modal` example :tada: | 2024-04-25 | 1 | -328/+35 | ||
| | | ||||||
| * | Introduce `opaque` widget helper | 2024-04-25 | 1 | -1/+1 | ||
| | | ||||||
| * | Showcase new `Stack` widget in `bezier_tool` example | 2024-04-25 | 1 | -18/+35 | ||
| | |