summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-046-32/+130
|\
| * 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-022-0/+9
| |
| * Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-023-28/+28
| |
| * Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-021-0/+78
| |
| * Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-301-0/+1
| |
| * Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-305-27/+27
| |
| * Implemented Tooltip as PureLibravatar Casper Rogild Storm2022-04-221-0/+10
| |
* | Expose `system` module through feature flagLibravatar Héctor Ramón Jiménez2022-04-301-1/+3
| |
* | Change `ContextCreationFailed` to `GraphicsCreationFailed`Libravatar Richard2022-04-271-5/+5
| |
* | Export new `system` moduleLibravatar Richard2022-04-261-0/+1
| |
* | Introduce `Error::ContextCreationFailed`Libravatar Richard2022-04-201-5/+5
|/
* Implement `pure` version of `Svg` widgetLibravatar Héctor Ramón Jiménez2022-03-221-0/+6
|
* Implement `pure` version of `QRCode` widgetLibravatar Héctor Ramón Jiménez2022-03-211-0/+6
|
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-162-31/+161
| | | | ... and fix collisions with the new `helpers`
* Implement `pure` version of `game_of_life` example :tada:Libravatar Héctor Ramón Jiménez2022-03-091-3/+3
|
* Implement `pure` version of `Canvas` widgetLibravatar Héctor Ramón Jiménez2022-03-091-0/+6
|
* Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-092-40/+180
| | | | Instead, we can define the type aliases just once in the root crate!
* 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-162-3/+2
| |
| * Add support for `ContentFit` for `Image`Libravatar Emi Simpson2022-02-161-0/+1
| |
* | Fix `subscription` for `iced::pure::Application`Libravatar Héctor Ramón Jiménez2022-02-201-0/+4
| |
* | Expose additional helpers in `iced::pure`Libravatar Héctor Ramón Jiménez2022-02-131-1/+16
| |
* | Implement `Image` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-131-1/+4
| |
* | Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-121-1/+4
| | | | | | | | | | | | | | | | The `Widget` trait in `iced_pure` needed to change a bit to make the implementation of `Element::map` possible. Specifically, the `children` method has been split into `diff` and `children_state`.
* | Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-113-5/+6
| |
* | Expose `iced_pure` through a `pure` feature in `iced`Libravatar Héctor Ramón Jiménez2022-02-114-0/+333
| | | | | | | | | | | | 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-282-14/+3
|
* Split `iced_futures` into different `backend` implementationsLibravatar Héctor Ramón Jiménez2022-01-283-95/+13
|
* Enable `instant` only for `wasm32` targetsLibravatar Héctor Ramón Jiménez2022-01-281-3/+3
| | | | ... and hide the dependency under a `time` module in `iced_native`
* Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez2022-01-289-156/+64
|
* Add setting to try OpenGL ES firstLibravatar Richard2022-01-191-0/+12
|
* Remove support for old `tokio` crateLibravatar Héctor Ramón Jiménez2022-01-122-21/+4
|
* Allow Sandbox applications to exit.Libravatar Drake Tetreault2021-12-291-0/+11
|
* 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
|
* Improve documentation of `Application::run`Libravatar Héctor Ramón Jiménez2021-11-291-2/+3
|
* Allow `Application::run` to return on native platformsLibravatar Andreas Hofstadler2021-11-291-2/+2
|
* Fix a few doc linksLibravatar Imbris2021-11-171-0/+2
|
* Introduce first-class `svg` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-1/+2
|
* Introduce first-class `image` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-1/+2
|
* Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-3/+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-153-17/+5
| | | | | | 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 `move_to` and `resize` commands for `window`Libravatar Héctor Ramón Jiménez2021-09-021-0/+3
|
* Implement and expose `read` and `write` helpers for `clipboard`Libravatar Héctor Ramón Jiménez2021-09-022-0/+4
|
* Remove `Clipboard` export in `iced`Libravatar Héctor Ramón Jiménez2021-09-022-2/+2
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-022-30/+10
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)