summaryrefslogtreecommitdiffstats
path: root/src/application.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-12-10Add image and hash snapshot-based testing to `iced_test`Libravatar Héctor Ramón Jiménez1-5/+4
2024-09-18Import `Executor` directly from `crate`Libravatar Héctor Ramón Jiménez1-3/+3
2024-09-18Allow specifying a custom executorLibravatar mtkennerly1-0/+18
2024-07-15Make `run_with` take a `FnOnce`Libravatar Héctor Ramón Jiménez1-1/+1
2024-07-14Export `operate` constructor in `advanced::widget`Libravatar Héctor Ramón Jiménez1-1/+0
2024-07-14Implement `application::Update` for `()`Libravatar Héctor Ramón Jiménez1-0/+10
2024-07-09Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez1-20/+2
If you need to run a `Task` during boot, use `run_with` instead!
2024-06-20Add `window` method to `Application`Libravatar Héctor Ramón Jiménez1-1/+8
2024-06-20feat: Add methods for window settings in ApplicationLibravatar ryankopf1-0/+44
This commit adds new methods to the `Application` struct for setting various window settings such as resizable, decorations, position, and level. These methods allow for more customization and control over the appearance and behavior of the application window.
2024-06-19Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez1-221/+369
2024-06-14Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez1-13/+13
2024-05-07Update `winit` to `0.30`Libravatar Héctor Ramón Jiménez1-17/+2
2024-03-22Rename `compositor::Renderer` to `Default`Libravatar Héctor Ramón Jiménez1-2/+2
2024-03-22Allow custom renderers in `Program` and `Application`Libravatar Héctor Ramón Jiménez1-6/+12
2024-03-17Revert "Remove `'static'` bound for `P::State` in `Program::run_with`"Libravatar Héctor Ramón Jiménez1-2/+1
This reverts commit cab9dec6267f3e38b2dee2a0262cd04e21a7519e. Wasm needs the `'static'` bound since the runtime will run in a background task.
2024-03-17Remove `'static'` bound for `P::State` in `Program::run_with`Libravatar Héctor Ramón Jiménez1-1/+2
2024-03-17Move `Application` trait to `advanced` moduleLibravatar Héctor Ramón Jiménez1-6/+3
2024-03-17Move `Program` to `application` moduleLibravatar Héctor Ramón Jiménez1-1/+4
2024-03-17Fix broken intra-doc links to `Sandbox`Libravatar Héctor Ramón Jiménez1-3/+1
2024-03-07Fix `block_on` in `iced_wgpu` hanging Wasm buildsLibravatar Héctor Ramón Jiménez1-2/+17
2024-03-07Leverage `DefaultStyle` traits instead of `Default`Libravatar Héctor Ramón Jiménez1-9/+7
2024-03-06Simplify theming for `Application`Libravatar Héctor Ramón Jiménez1-9/+19
2024-02-15Point doc links to `0.12` branchLibravatar Héctor Ramón Jiménez1-9/+9
2024-01-21Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez1-4/+5
2024-01-18Remove `Compositor` window genericLibravatar Héctor Ramón Jiménez1-6/+1
And update `glyphon` and `window_clipboard`
2024-01-16WIP raw-window-handle 0.6Libravatar Ian Douglas Scott1-1/+6
2023-07-28Bump versions :tada:Libravatar Héctor Ramón Jiménez1-9/+9
2023-04-13Bump versions :tada:Libravatar Héctor Ramón Jiménez1-9/+9
2023-03-05Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez1-1/+1
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez1-6/+6
2023-02-24Introduce `iced_renderer` subcrate featuring runtime renderer fallbackLibravatar Héctor Ramón Jiménez1-2/+2
2023-02-24Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez1-1/+0
2023-02-18Bump versions :tada:Libravatar Héctor Ramón Jiménez1-9/+9
2023-01-14Bump versions :tada:Libravatar Héctor Ramón Jiménez1-9/+9
2023-01-12Draft `Shell:request_redraw` APILibravatar Héctor Ramón Jiménez1-7/+0
... and implement `TextInput` cursor blink :tada:
2022-12-15Implement `window::close` action and remove `should_exit`Libravatar Héctor Ramón Jiménez1-4/+0
2022-12-07Bump versions :tada:Libravatar Héctor Ramón Jiménez1-9/+9
2022-11-10Fix outdated links in documentationLibravatar Héctor Ramón Jiménez1-9/+9
2022-11-10Fix broken documentation linksLibravatar Héctor Ramón Jiménez1-2/+1
2022-08-18Remove `window::Mode` and introduce `Settings::visible`Libravatar Héctor Ramón Jiménez1-21/+0
Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows.
2022-07-27Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez1-7/+6
2022-07-09Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez1-0/+1
... and check those in CI as well!
2022-07-08Make `Element` aliases in `iced` compatible with `iced_native` and `iced_pure`Libravatar Héctor Ramón Jiménez1-3/+5
2022-07-08Fix missing docs in `iced` crateLibravatar Héctor Ramón Jiménez1-0/+1
2022-07-08Add `Style` variant support to `application::StyleSheet`Libravatar Héctor Ramón Jiménez1-1/+15
2022-05-26Rename `theme::Definition` to `application::StyleSheet`Libravatar Héctor Ramón Jiménez1-2/+3
2022-05-25Let a `Theme` control the background color of an applicationLibravatar Héctor Ramón Jiménez1-13/+3
... and remove `Application::background_color`
2022-05-14Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez1-10/+23
RFC: https://github.com/iced-rs/rfcs/pull/6
2022-05-02Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez1-9/+9
2022-04-30Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez1-9/+9