You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+50-3Lines changed: 50 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [Unreleased]
8
8
### Added
9
-
-`"system_font"` feature gates reading system fonts. [#370]
9
+
- Support for the [`smol`] async runtime. [#699]
10
+
11
+
[#699]: https://github.com/hecrj/iced/pull/699
12
+
[`smol`]: https://github.com/smol-rs/smol
13
+
14
+
## [0.2.0] - 2020-11-26
15
+
### Added
16
+
-__[`Canvas` interactivity][canvas]__ (#325)
17
+
A trait-based approach to react to mouse and keyboard interactions in [the `Canvas` widget][#193].
18
+
19
+
-__[`iced_graphics` subcrate][opengl]__ (#354)
20
+
A backend-agnostic graphics subcrate that can be leveraged to build new renderers.
21
+
22
+
-__[OpenGL renderer][opengl]__ (#354)
23
+
An OpenGL renderer powered by [`iced_graphics`], [`glow`], and [`glutin`]. It is an alternative to the default [`wgpu`] renderer.
24
+
25
+
-__[Overlay support][pick_list]__ (#444)
26
+
Basic support for superpositioning interactive widgets on top of other widgets.
27
+
28
+
-__[Faster event loop][view]__ (#597)
29
+
The event loop now takes advantage of the data dependencies in [The Elm Architecture] and leverages the borrow checker to keep the widget tree alive between iterations, avoiding unnecessary rebuilds.
30
+
31
+
-__[Event capturing][event]__ (#614)
32
+
The runtime now can tell whether a widget has handled an event or not, easing [integration with existing applications].
33
+
34
+
-__[`PickList` widget][pick_list]__ (#444)
35
+
A drop-down selector widget built on top of the new overlay support.
36
+
37
+
-__[`QRCode` widget][qr_code]__ (#622)
38
+
A widget that displays a QR code, powered by [the `qrcode` crate].
0 commit comments