summaryrefslogtreecommitdiffstats
path: root/src/lib.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make menu style accessibleLibravatar 0x1922022-09-211-0/+1
|
* Implement `focus_next` operationLibravatar Héctor Ramón Jiménez2022-08-021-1/+5
| | | | ... as well as a `count_focusable` composable helper!
* Use `ToString` for `Text::new` instead of `Into<String>`Libravatar Héctor Ramón Jiménez2022-07-271-1/+1
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-43/+12
|
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-5/+13
| | | | ... and explicitly annotate crates as well.
* Fix missing docs in `iced` crateLibravatar Héctor Ramón Jiménez2022-07-081-1/+1
|
* Rename `theme::Definition` to `application::StyleSheet`Libravatar Héctor Ramón Jiménez2022-05-261-2/+2
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-0/+3
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-041-10/+11
|\
| * Expose `Padding` in `iced` root crateLibravatar Héctor Ramón Jiménez2022-05-031-2/+2
| |
| * Indicate feature-flagged modules in documentationLibravatar Héctor Ramón Jiménez2022-05-021-0/+1
| |
| * Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-021-8/+8
| |
| * Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-5/+5
| |
* | Expose `system` module through feature flagLibravatar Héctor Ramón Jiménez2022-04-301-1/+3
| |
* | Export new `system` moduleLibravatar Richard2022-04-261-0/+1
|/
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-071-2/+2
|\
| * Expose `ContentFit` in rootLibravatar Héctor Ramón Jiménez2022-02-161-2/+2
| |
* | Expose `iced_pure` through a `pure` feature in `iced`Libravatar Héctor Ramón Jiménez2022-02-111-0/+3
| | | | | | | | | | | | Besides exposing the `iced_pure` crate, enabling the `pure` feature also provides pure versions of both the `Application` and `Sandbox` traits! :tada:
* | Draft virtual `Button`, `Column`, and `Text`Libravatar Héctor Ramón Jiménez2022-02-101-0/+1
|/ | | | ... as well as a very naive diffing strategy!
* Implement `time` module for `wasm-bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2022-01-281-14/+1
|
* Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez2022-01-281-15/+4
|
* Remove support for old `tokio` crateLibravatar Héctor Ramón Jiménez2022-01-121-7/+1
|
* Use commit hash in `html_logo_url`Libravatar Héctor Ramón Jiménez2021-12-091-1/+1
|
* Added icon in docsLibravatar daladim2021-12-091-0/+3
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-3/+4
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-2/+3
|
* Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-151-3/+2
| | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* Implement and expose `read` and `write` helpers for `clipboard`Libravatar Héctor Ramón Jiménez2021-09-021-0/+1
|
* Remove `Clipboard` export in `iced`Libravatar Héctor Ramón Jiménez2021-09-021-1/+1
|
* Make `Menu` API a bit more functionalLibravatar Héctor Ramón Jiménez2021-07-121-1/+1
|
* Initial menu implementationLibravatar Richard2021-07-051-2/+2
|
* Change examples to point to 0.3 examples, not 0.2Libravatar Riccardo D'Ambrosio2021-05-131-1/+1
|
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-111-2/+3
|
* Add `smol` async runtimeLibravatar Jayce Fayne2021-01-141-1/+7
|
* Update example links to point to `0.2` branchLibravatar Héctor Ramón Jiménez2020-11-261-1/+1
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-2/+0
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Introduce `tokio_old` featureLibravatar Héctor Ramón Jiménez2020-11-251-2/+9
| | | | | This feature allows users to rely on the `0.2` version of `tokio` while the async ecosystem upgrades to the latest version.
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-0/+4
|
* Introduce feature flags to enable `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-271-6/+23
| | | | Also keep `iced_wgpu` as the default renderer for the time being.
* Implement `iced_glutin` :tada:Libravatar Héctor Ramón Jiménez2020-05-211-1/+1
|
* Rename `MouseCursor` to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2020-04-301-2/+1
|
* Disable `time` module on Wasm for nowLibravatar Héctor Ramón Jiménez2020-04-301-1/+4
|
* Implement `time::every` in `iced_futures`Libravatar Héctor Ramón Jiménez2020-04-301-0/+4
|
* Remove `ButtonState`Libravatar Héctor Ramón Jiménez2020-04-301-3/+0
|
* Move `MouseCursor` to `iced_core`Libravatar Héctor Ramón Jiménez2020-04-291-1/+2
|
* Remove `Drawable` and rename `State` to `Program`Libravatar Héctor Ramón Jiménez2020-04-281-1/+1
|
* Move reusable `mouse` types to `iced_core`Libravatar Héctor Ramón Jiménez2020-04-281-0/+4
|
* Document widget feature flagsLibravatar Héctor Ramón Jiménez2020-04-051-0/+1
|
* Fix a couple of links in documentationLibravatar Héctor Ramón Jiménez2020-04-021-2/+1
|
* Improve docs for `Sandbox` and `Application`Libravatar Héctor Ramón Jiménez2020-04-021-5/+6
|