Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix documentation of `Action::RunWithHandle` | 2024-02-07 | 1 | -1/+1 | |
| | |||||
* | Rename `fetch_native_handle` to `run_with_handle` in `window` | 2024-02-07 | 2 | -8/+10 | |
| | |||||
* | Re-implement against latest iced master. Rename FetchNativeHandle. | 2024-02-07 | 3 | -0/+26 | |
| | |||||
* | Organize imports in `runtime::command::action` | 2024-02-03 | 1 | -2/+1 | |
| | |||||
* | Rename `PlateformSpecific` variant in `Action` to `Custom` | 2024-02-03 | 1 | -4/+4 | |
| | |||||
* | feat: somewhere to place extra actions by platform | 2024-02-03 | 1 | -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. | 2024-02-02 | 1 | -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` | 2024-02-01 | 2 | -46/+37 | |
| | |||||
* | Convert `Renderer::Theme` to generic `Widget` type | 2024-01-21 | 6 | -33/+41 | |
| | |||||
* | Implemented fetch_maximized and fetch_minimized | 2024-01-09 | 2 | -0/+45 | |
| | |||||
* | Use `AtomicU64` for `window::Id` | 2023-12-02 | 4 | -125/+140 | |
| | |||||
* | Use actual floats for logical coordinates | 2023-11-30 | 2 | -23/+15 | |
| | |||||
* | Fix broken intra-doc links | 2023-11-29 | 2 | -2/+2 | |
| | |||||
* | Fix `clippy` lints | 2023-11-29 | 1 | -1/+1 | |
| | |||||
* | Merge branch 'master' into feat/multi-window-support | 2023-11-29 | 11 | -112/+141 | |
|\ | |||||
| * | Implement `command::channel` helper | 2023-11-29 | 1 | -0/+21 | |
| | | | | | | | | It is analogous to `subscription::channel`. | ||||
| * | Implement `Command::run` for executing a `Stream` to completion | 2023-11-29 | 2 | -2/+21 | |
| | | |||||
| * | Remove unused `position` argument in `overlay::Nested` | 2023-11-21 | 1 | -10/+3 | |
| | | |||||
| * | Fix `Overlay` composition | 2023-11-21 | 2 | -12/+36 | |
| | | | | | | | | Translations were not easily composable. | ||||
| * | Fix `Command<T>::perform` to return a `Command<T>` | 2023-10-18 | 1 | -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` | 2023-09-20 | 1 | -5/+0 | |
| | | |||||
| * | Fix `clippy::semicolon_if_nothing_returned` | 2023-09-20 | 2 | -2/+2 | |
| | | |||||
| * | Merge pull request #2092 from nyurik/clippy | 2023-09-19 | 1 | -13/+7 | |
| |\ | | | | | | | Chore: Apply some minor clippy fixes | ||||
| | * | Chore: Apply some minor clippy fixes | 2023-09-19 | 1 | -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 quoting | 2023-09-19 | 1 | -1/+1 | |
| |/ | | | | | | | Add quotes a number of doc strings like `sRGB` | ||||
| * | Merge branch 'master' into explicit-text-caching | 2023-09-10 | 6 | -47/+26 | |
| |\ | |||||
| | * | Deny `broken_intradoc_links` and verify documentation in CI | 2023-09-09 | 1 | -2/+3 | |
| | | | |||||
| | * | Fix majority of unresolved documentation links | 2023-09-09 | 4 | -28/+7 | |
| | | | |||||
| | * | Merge pull request #2069 from iced-rs/use-workspace-dependencies | 2023-09-07 | 1 | -15/+13 | |
| | |\ | | | | | | | | | Use workspace dependencies and package inheritance | ||||
| | | * | Use workspace dependencies and package inheritance | 2023-09-04 | 1 | -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` | 2023-09-07 | 1 | -2/+3 | |
| | |/ | | | | | | | | | | Also rename `subscription::events*` to `event::listen*`. | ||||
| * | | Make `widget::Tree` mutable in `Widget::layout` | 2023-08-30 | 1 | -3/+3 | |
| | | | |||||
| * | | Implement explicit text caching in the widget state tree | 2023-08-30 | 1 | -6/+11 | |
| |/ | |||||
| * | Fix `clippy` lints for Rust 1.72 | 2023-08-26 | 1 | -1/+1 | |
| | | |||||
| * | Bump version of `iced_runtime` :tada: | 2023-08-02 | 1 | -1/+1 | |
| | | |||||
| * | Update README.md to reflect native->runtime rename | 2023-08-02 | 1 | -5/+5 | |
| | | |||||
| * | Fix `iced_runtime` description | 2023-07-28 | 1 | -1/+1 | |
| | | |||||
| * | Bump versions :tada: | 2023-07-28 | 3 | -6/+6 | |
| | | |||||
| * | Don't clip raw overlay bounds | 2023-07-24 | 1 | -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`. | ||||
| * | Add viewport to Widget::on_event | 2023-07-15 | 1 | -0/+3 | |
| | | |||||
* | | refactored window storage; | 2023-07-21 | 7 | -42/+386 | |
| | | | | | | | | | | new helper window events (Destroyed, Created); clippy + fmt; | ||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-07-12 | 2 | -4/+15 | |
|/ | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Cargo.toml # core/src/window/icon.rs # core/src/window/id.rs # core/src/window/position.rs # core/src/window/settings.rs # examples/integration/src/main.rs # examples/integration_opengl/src/main.rs # glutin/src/application.rs # native/src/subscription.rs # native/src/window.rs # runtime/src/window/action.rs # src/lib.rs # src/window.rs # winit/Cargo.toml # winit/src/application.rs # winit/src/icon.rs # winit/src/settings.rs # winit/src/window.rs | ||||
* | Merge pull request #1927 from thunderstorm010/master | 2023-07-06 | 2 | -13/+18 | |
|\ | | | | | Add command to retrieve window size | ||||
| * | Add `fetch_size` helper to `runtime::window` | 2023-07-06 | 1 | -0/+7 | |
| | | |||||
| * | Use `Size` in both `Resize` and `FetchSize` window actions | 2023-07-06 | 2 | -14/+8 | |
| | | |||||
| * | Add FetchSize command - apply the changes discussed at #water-cooler | 2023-06-22 | 1 | -15/+3 | |
| | | |||||
| * | Add command to retrieve window size | 2023-06-21 | 1 | -0/+16 | |
| | | |||||
* | | Merge pull request #1938 from iced-rs/text-cache-modes | 2023-06-30 | 1 | -7/+6 | |
|\ \ | | | | | | | Text cache modes | ||||
| * | | Revert "Remove `layout` method from `core::Renderer` trait" | 2023-06-29 | 1 | -7/+6 | |
| | | | | | | | | | | | | This reverts commit 2128472c2a8afcb59927712497c4f613612e9dcc. | ||||
* | | | Merge pull request #1913 from Drakulix/feature/runtime-state-operate | 2023-06-29 | 1 | -0/+38 | |
|\ \ \ | |/ / |/| | | runtime: Handle widget operations in `program::State` helper |