summaryrefslogtreecommitdiffstats
path: root/runtime (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |\
| | * Deny `broken_intradoc_links` and verify documentation in CILibravatar Héctor Ramón Jiménez2023-09-091-2/+3
| | |
| | * Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-094-28/+7
| | |
| | * Merge pull request #2069 from iced-rs/use-workspace-dependenciesLibravatar Héctor Ramón2023-09-071-15/+13
| | |\ | | | | | | | | Use workspace dependencies and package inheritance
| | | * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-15/+13
| | | | | | | | | | | | | | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
| | * | Introduce `keyboard::on_key_press` and `on_key_release`Libravatar Héctor Ramón Jiménez2023-09-071-2/+3
| | |/ | | | | | | | | | Also rename `subscription::events*` to `event::listen*`.
| * | Make `widget::Tree` mutable in `Widget::layout`Libravatar Héctor Ramón Jiménez2023-08-301-3/+3
| | |
| * | Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-6/+11
| |/
| * Fix `clippy` lints for Rust 1.72Libravatar Héctor Ramón Jiménez2023-08-261-1/+1
| |
| * Bump version of `iced_runtime` :tada:Libravatar Héctor Ramón Jiménez2023-08-021-1/+1
| |
| * Update README.md to reflect native->runtime renameLibravatar Ryan Scheidter2023-08-021-5/+5
| |
| * Fix `iced_runtime` descriptionLibravatar Héctor Ramón Jiménez2023-07-281-1/+1
| |
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-283-6/+6
| |
| * Don't clip raw overlay boundsLibravatar Cory Forsstrom2023-07-241-11/+7
| | | | | | | | | | | | | | | | User interface wraps the overlay in `overlay::Nested`. Clipping here w/ the base Nested overlay always clipped at (0, 0) position instead of the correct position of the child overlay. It's clipped properly already within `Nested::draw`.