summaryrefslogtreecommitdiffstats
path: root/runtime (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix `Task::collect` not producing the collected outputsLibravatar Héctor Ramón Jiménez2024-06-151-5/+12
|
* Implement `Task::collect`Libravatar Héctor Ramón Jiménez2024-06-151-29/+61
|
* Use `Task` chaining to simplify `multi_window` exampleLibravatar Héctor Ramón Jiménez2024-06-141-9/+29
|
* Move `Maybe*` traits back to `iced_futures`Libravatar Héctor Ramón Jiménez2024-06-141-2/+1
|
* Fix `Send` requirements for Wasm targetsLibravatar Héctor Ramón Jiménez2024-06-142-4/+4
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-1417-749/+607
|
* Introduce `window::Id` to `Event` subscriptionsLibravatar Héctor Ramón Jiménez2024-06-101-2/+2
| | | | And remove `window::Id` from `Event` altogether.
* Added scale_factor to `Screenshot` data for use when cropping to widget boundsLibravatar Shan2024-05-241-3/+13
|
* Pass `WindowHandle` by value to `window::run_with_handle`Libravatar Héctor Ramón Jiménez2024-05-082-2/+2
|
* Fix `clippy` lint in `runtime::window::screenshot`Libravatar Héctor Ramón Jiménez2024-05-011-3/+3
|
* Utilize bytes::Bytes iced_runtime::window::ScreenshotLibravatar Thomas Sieverding2024-05-012-5/+12
|
* Introduce `opaque` widget helperLibravatar Héctor Ramón Jiménez2024-04-252-2/+2
|
* Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez2024-04-072-7/+3
|
* Allow custom renderers in `Program` and `Application`Libravatar Héctor Ramón Jiménez2024-03-221-2/+2
|
* Make `iced_tiny_skia` optional with a `tiny-skia` featureLibravatar Héctor Ramón Jiménez2024-03-221-6/+6
|
* Remove `sandbox` by making `application` more generic :tada:Libravatar Héctor Ramón Jiménez2024-03-161-0/+6
|
* Rename `fetch_location` to `fetch_position`Libravatar Héctor Ramón Jiménez2024-02-222-16/+16
|
* Add `fetch_location` command to `window` moduleLibravatar Night_Hunter2024-02-222-0/+19
|
* Fix URL of graph image in `iced_runtime` docsLibravatar Héctor Ramón Jiménez2024-02-151-1/+1
|
* Point doc links to `0.12` branchLibravatar Héctor Ramón Jiménez2024-02-152-2/+2
|
* Rename `show_window_menu` to `show_system_menu`Libravatar Héctor Ramón Jiménez2024-02-132-8/+10
|
* Add `show_window_menu` actionLibravatar Ian Douglas Scott2024-02-132-0/+14
| | | | | | | | Winit currently supports this only on Windows and Wayland. This requests that a context menu is shown at the cursor position, like the menu normally triggered by right clicking the title bar. This is important for implementing client side decorations with Iced widgets.
* Introduce `Kind` in `core::clipboard`Libravatar Héctor Ramón Jiménez2024-02-132-27/+31
|
* Add support for primary clipboardLibravatar Mattias Eriksson2024-02-132-0/+23
|
* Fix documentation of `Action::RunWithHandle`Libravatar Héctor Ramón Jiménez2024-02-071-1/+1
|
* Rename `fetch_native_handle` to `run_with_handle` in `window`Libravatar Héctor Ramón Jiménez2024-02-072-8/+10
|
* Re-implement against latest iced master. Rename FetchNativeHandle.Libravatar dtzxporter2024-02-073-0/+26
|
* Organize imports in `runtime::command::action`Libravatar Héctor Ramón Jiménez2024-02-031-2/+1
|
* Rename `PlateformSpecific` variant in `Action` to `Custom`Libravatar Héctor Ramón Jiménez2024-02-031-4/+4
|
* feat: somewhere to place extra actions by platformLibravatar ShootingStarDragons2024-02-031-0/+6
| | | | | | I have view iced-sckt forked iced, and add the extra actions. and there do are some extra actions, like set margin for layer-shell, set lock for ext-session-shell. I think add an any will be of help maybe
* The memory information is returned in bytes and not kb.Libravatar brianch2024-02-021-2/+2
| | | | | | | Fix the documentation of the Information struct, and the example system_information that uses it. Co-authored-by: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com>
* Remove `position` from `overlay::Element`Libravatar Héctor Ramón Jiménez2024-02-012-46/+37
|
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-216-33/+41
|
* Implemented fetch_maximized and fetch_minimizedLibravatar Calastrophe2024-01-092-0/+45
|
* Use `AtomicU64` for `window::Id`Libravatar Héctor Ramón Jiménez2023-12-024-125/+140
|
* Use actual floats for logical coordinatesLibravatar Héctor Ramón Jiménez2023-11-302-23/+15
|
* Fix broken intra-doc linksLibravatar Héctor Ramón Jiménez2023-11-292-2/+2
|
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-11-291-1/+1
|
* Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-2911-112/+141
|\
| * Implement `command::channel` helperLibravatar Héctor Ramón Jiménez2023-11-291-0/+21
| | | | | | | | It is analogous to `subscription::channel`.
| * Implement `Command::run` for executing a `Stream` to completionLibravatar Héctor Ramón Jiménez2023-11-292-2/+21
| |
| * Remove unused `position` argument in `overlay::Nested`Libravatar Héctor Ramón Jiménez2023-11-211-10/+3
| |
| * Fix `Overlay` compositionLibravatar Héctor Ramón Jiménez2023-11-212-12/+36
| | | | | | | | Translations were not easily composable.
| * Fix `Command<T>::perform` to return a `Command<T>`Libravatar Ian Douglas Scott2023-10-181-3/+3
| | | | | | | | | | | | | | This seems like clearly the correct thing to do here. If the type bound on `Command` isn't specified, it makes no difference, since the generic is inferred in a way that works with either definition. But this is important if `Command<T>` is aliased with a concrete type.
| * Centralize `clippy` lints in `.cargo/config.toml`Libravatar Héctor Ramón Jiménez2023-09-201-5/+0
| |
| * Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-202-2/+2
| |
| * Merge pull request #2092 from nyurik/clippyLibravatar Héctor Ramón2023-09-191-13/+7
| |\ | | | | | | Chore: Apply some minor clippy fixes
| | * Chore: Apply some minor clippy fixesLibravatar Yuri Astrakhan2023-09-191-13/+7
| | | | | | | | | | | | | | | | | | * Use `.elapsed()` for duration * Use direct iteration without calling `.iter()` and the like * order fields in the `Text` struct creation as declared
| * | Chore: Apply clippy docs keyword quotingLibravatar Yuri Astrakhan2023-09-191-1/+1
| |/ | | | | | | Add quotes a number of doc strings like `sRGB`
| * Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-106-47/+26
| |\