Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Merge pull request #127 from Gohla/web_styling | 2019-12-18 | 5 | -7/+26 | ||
|\ \ \ | |/ / |/| | | ||||||
| * | | Add several missing style attributes in iced_web. | 2019-12-18 | 5 | -7/+26 | ||
|/ / | ||||||
* | | Merge pull request #122 from hecrj/feature/event-subscriptions | 2019-12-16 | 20 | -39/+726 | ||
|\ \ | ||||||
| * | | Port `todos` to `async_std` | 2019-12-14 | 1 | -11/+16 | ||
| * | | Fix `Widget::width` for `Checkbox` | 2019-12-14 | 1 | -1/+1 | ||
| * | | Log broadcast error as an error instead of a warning | 2019-12-14 | 1 | -1/+1 | ||
| * | | Write docs for subscriptions and reorganize a bit | 2019-12-14 | 12 | -123/+225 | ||
| * | | Make `iced_native` subscription input opaque | 2019-12-14 | 4 | -28/+36 | ||
| * | | Move native events subscription to `iced_native` | 2019-12-14 | 2 | -35/+32 | ||
| * | | Remove unnecessary clone in `subscription::Map` | 2019-12-14 | 1 | -1/+1 | ||
| * | | Hash `Duration` of `time::Every` in `stopwatch` | 2019-12-14 | 1 | -0/+1 | ||
| * | | Use generic `Hasher` in `stopwatch` | 2019-12-14 | 1 | -3/+4 | ||
| * | | Remove unnecessary event loop proxy `Mutex` | 2019-12-14 | 1 | -6/+1 | ||
| * | | Consume `Recipe` when building a `Stream` | 2019-12-14 | 4 | -4/+5 | ||
| * | | Rename `timer` example to `stopwatch` | 2019-12-14 | 1 | -6/+6 | ||
| * | | Use `surf` in `pokedex` example | 2019-12-14 | 3 | -16/+11 | ||
| * | | Add `timer` example | 2019-12-13 | 3 | -6/+184 | ||
| * | | Simplify `events` example | 2019-12-10 | 1 | -6/+6 | ||
| * | | Implement `Subscription::map` and `from_recipe` | 2019-12-10 | 4 | -58/+123 | ||
| * | | Rename `clock` example to `events` | 2019-12-09 | 1 | -43/+37 | ||
| * | | Allow listening to runtime events in subscriptions | 2019-12-08 | 7 | -40/+89 | ||
| * | | Merge branch 'master' into feature/event-subscriptions | 2019-12-08 | 13 | -62/+510 | ||
| |\ \ | ||||||
| * | | | Use `oneshot` and `future::select` to cancel streams | 2019-12-07 | 3 | -88/+48 | ||
| * | | | Add `clock` example | 2019-12-05 | 1 | -0/+166 | ||
| * | | | Draft first version of event subscriptions :tada: | 2019-12-05 | 11 | -12/+182 | ||
* | | | | Merge pull request #111 from Maldela/svg | 2019-12-16 | 15 | -200/+1456 | ||
|\ \ \ \ | ||||||
| * | | | | Cache `Svg` load result properly | 2019-12-15 | 2 | -20/+22 | ||
| * | | | | Put `svg` rendering behind a feature gate | 2019-12-15 | 5 | -17/+50 | ||
| * | | | | Add `svg` example | 2019-12-15 | 3 | -1/+766 | ||
| * | | | | Update `Svg` documentation | 2019-12-15 | 2 | -6/+13 | ||
| * | | | | Rerasterize SVGs when resized and refactor a bit | 2019-12-15 | 8 | -274/+544 | ||
| * | | | | Renamed `Icon` widget to `Svg` and gave it separate width and height. | 2019-12-12 | 4 | -90/+110 | ||
| * | | | | Merged svg pipeline into image | 2019-12-12 | 8 | -657/+93 | ||
| * | | | | Improved dpi handling | 2019-12-12 | 2 | -54/+8 | ||
| * | | | | Ran cargo_fmt over changed files. | 2019-12-11 | 6 | -55/+53 | ||
| * | | | | Added an `Icon` widget to native. | 2019-12-11 | 7 | -6/+138 | ||
| * | | | | Implemented SVG support in iced_wgpu. | 2019-12-11 | 5 | -1/+640 | ||
|/ / / / | ||||||
* | / / | Add `Button::height` and `Button::min_height` | 2019-12-09 | 2 | -2/+24 | ||
| |/ / |/| | | ||||||
* | | | Merge pull request #113 from hecrj/feature/password-input | 2019-12-08 | 3 | -22/+100 | ||
|\ \ \ | ||||||
| * | | | Update native `CHANGELOG` | 2019-12-08 | 2 | -1/+2 | ||
| * | | | Change `TextInput` word-jump modifier key on macOS | 2019-12-07 | 1 | -2/+14 | ||
| * | | | Showcase new `TextInput::password` in `tour` | 2019-12-07 | 1 | -11/+33 | ||
| * | | | Implement `TextInput::password` for secure data | 2019-12-07 | 1 | -11/+54 | ||
* | | | | Simplify `custom_widget` example | 2019-12-07 | 1 | -10/+6 | ||
|/ / / | ||||||
* | | | Add `custom_widget` example | 2019-12-07 | 2 | -0/+151 | ||
* | | | Merge pull request #108 from hecrj/feature/text-input-behavior | 2019-12-06 | 10 | -42/+265 | ||
|\ \ \ | |/ / |/| | | ||||||
| * | | Update `CHANGELOG` | 2019-12-06 | 1 | -0/+5 | ||
| * | | Consider word bounds in `TextInput` cursor jumps | 2019-12-06 | 1 | -42/+43 | ||
| * | | Use `unicode-segmentation` for `text_input::Value` | 2019-12-06 | 2 | -18/+34 | ||
| * | | Implement word movement in `TextInput` | 2019-12-06 | 1 | -7/+76 |