summaryrefslogtreecommitdiffstats
path: root/src/lib.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Move `Space` to `widget` moduleLibravatar Héctor Ramón Jiménez2020-04-021-1/+1
|
* Move common keyboard types to `iced_core`Libravatar Héctor Ramón Jiménez2020-03-171-0/+1
| | | | Also expose them in `iced` through `iced_native` and `iced_web`.
* Add transform stack to `canvas::Frame`Libravatar Héctor Ramón Jiménez2020-02-141-1/+1
|
* Draft `Canvas` types and `clock` exampleLibravatar Héctor Ramón Jiménez2020-02-121-1/+1
|
* Fix `docs.rs` linksLibravatar Héctor Ramón Jiménez2020-02-031-1/+0
| | | | Related issue: https://github.com/rust-lang/docs.rs/issues/223
* Forbid unsafe code and Rust 2018 idiomsLibravatar Héctor Ramón Jiménez2020-01-201-2/+2
|
* Package examples and remove `dev-dependencies`Libravatar Héctor Ramón Jiménez2020-01-201-2/+2
|
* Implement `WasmBindgen` executor and reorganizeLibravatar Héctor Ramón Jiménez2020-01-201-13/+17
|
* Add `Application::Executor` associated typeLibravatar Héctor Ramón Jiménez2020-01-201-7/+15
|
* Expose `window::Mode` in `iced`Libravatar Héctor Ramón Jiménez2020-01-161-0/+1
| | | | | Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side.
* Use cfg and path attribute instead of cfg_attr for IntelliJ Rust supportLibravatar Gabriel Konat2019-12-041-2/+5
|
* Merge pull request #68 from hecrj/feature/application-settingsLibravatar Héctor Ramón2019-11-251-0/+3
|\ | | | | Allow `Application` configuration with `Settings`
| * Allow `Application` configuration with `Settings`Libravatar Héctor Ramón Jiménez2019-11-251-0/+3
| |
* | Update debug view GIF in `README`Libravatar Héctor Ramón Jiménez2019-11-251-1/+1
|/
* Fix `examples` link in documentationLibravatar Héctor Ramón Jiménez2019-11-231-1/+1
|
* Write docs for `iced` and `iced_native`Libravatar Héctor Ramón Jiménez2019-11-221-0/+181
|
* Implement `iced::Sandbox` trait for simple appsLibravatar Héctor Ramón Jiménez2019-11-211-68/+4
|
* Move widgets from `core` to `native` and `web`Libravatar Héctor Ramón Jiménez2019-11-211-2/+2
| | | | Also made fields private and improved `Renderer` traits.
* Support async actions in `iced_winit`Libravatar Héctor Ramón Jiménez2019-11-171-7/+15
|
* Allow applications to control the window titleLibravatar Héctor Ramón Jiménez2019-11-091-0/+6
| | | | `iced_winit` will change the window title dynamically at runtime!
* Implement debug view and load system fontsLibravatar Héctor Ramón Jiménez2019-11-031-1/+1
|
* Connect `iced_web` with `iced` properlyLibravatar Héctor Ramón Jiménez2019-10-231-10/+26
|
* Move `winit` logic from `iced` to `iced_winit`Libravatar Héctor Ramón Jiménez2019-10-091-105/+17
| | | | | | | | | | - Added new `renderer::Windowed` trait. This shoud allow users to easily try different renderers by simply changing one line. - Renamed `UserInterface` traits to `Application`, as the `run` method takes total control of the current thread. - Moved `MouseCursor` back to `iced_native`. The new `renderer::Windowed` trait returns one on `draw`. - Split `iced_native` renderer in multiple modules, for consistency.
* Make `iced_core::Button` customizableLibravatar Héctor Ramón Jiménez2019-10-081-1/+2
| | | | | | | Now it supports: - Any kind of content - Custom border radius - Custom background
* Initialize renderer primitive properlyLibravatar Héctor Ramón Jiménez2019-10-071-2/+8
|
* Use `log` crate instead of `dbg!`Libravatar Héctor Ramón Jiménez2019-10-071-4/+0
|
* Draft basic text rendering using `wgpu_glyph`Libravatar Héctor Ramón Jiménez2019-10-051-8/+26
|
* Add `Renderer` and `Primitive` conceptsLibravatar Héctor Ramón Jiménez2019-10-051-6/+4
|
* Count redraws and add a couple of TODOsLibravatar Héctor Ramón Jiménez2019-10-041-5/+16
|
* Draft UI event loopLibravatar Héctor Ramón Jiménez2019-10-031-2/+39
|
* Clear the window properly on redrawLibravatar Héctor Ramón Jiménez2019-10-031-2/+14
|
* Initialize `wgpu`Libravatar Héctor Ramón Jiménez2019-10-031-0/+2
| | | | We only enable the `vulkan` feature for now.