Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-12-14 | Support custom renderers in `iced_test` through `renderer::Headless` trait | 1 | -0/+11 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -11/+1 | ||
2023-11-29 | Fix broken intra-doc links | 1 | -1/+1 | ||
2023-10-27 | Disable maximize window button if `Settings::resizable` is `false` | 1 | -0/+6 | ||
2023-09-20 | Fix `clippy::default_trait_access` | 1 | -1/+1 | ||
2023-09-18 | Flesh out the `editor` example a bit more | 1 | -0/+4 | ||
2023-07-26 | Add app id setting for linux | 1 | -1/+27 | ||
2023-07-24 | Moved `exit_on_close_request` to window settings. This now controls whether ↵ | 1 | -11/+1 | ||
each INDIVIDUAL window should close on CloseRequested events. | |||||
2023-07-21 | refactored window storage; | 1 | -172/+74 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-05-25 | Introduce `window::Level` enum | 1 | -11/+7 | ||
... and add `level` field to `window::Settings` | |||||
2023-05-11 | Allow unsafe code | 1 | -0/+1 | ||
2023-05-11 | Add unsafe block | 1 | -1/+4 | ||
2023-05-11 | Fixup option | 1 | -5/+1 | ||
2023-05-11 | Fix import path | 1 | -1/+1 | ||
2023-05-11 | Fix build on linux | 1 | -1/+3 | ||
2023-05-11 | Update to winit 0.28 | 1 | -2/+6 | ||
2023-04-12 | add action set icon while running (#1590) | 1 | -3/+4 | ||
* set windows icon live action * change get icon to insto raw * remove mobile docs * format * fix format * add file methods to Icon * Rename action to `ChangeIcon` and tidy up `Icon` modules * Fix documentation of `icon::Error` * Remove unnecessary `\` in `icon` documentation * Remove `etc.` from `Icon` documentation --------- Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com> | |||||
2023-02-28 | Removed glutin MW support and reverted glutin changes back to Iced master ↵ | 1 | -4/+4 | ||
since it's being axed as we speak. | |||||
2023-02-24 | Remove `iced_glutin` and `iced_glow` leftovers | 1 | -8/+0 | ||
2023-02-23 | Remove logging large bytes arrays | 1 | -1/+22 | ||
2023-02-11 | Hide window until `Renderer` has been initialized | 1 | -2/+1 | ||
2023-01-09 | move window settings to `iced_native` | 1 | -0/+21 | ||
2023-01-09 | Introduce `close_requested` for `multi-window` | 1 | -0/+4 | ||
2023-01-09 | fix: temporalily remove the unsafe pointer `HWND` | 1 | -3/+3 | ||
2022-11-05 | Allow providing a DOM identifier as a `target` for Wasm | 1 | -2/+10 | ||
2022-08-29 | Update `winit` and `glutin` forks | 1 | -1/+1 | ||
2022-08-26 | Fix invisible window on Windows | 1 | -1/+2 | ||
... by reverting the changes that were supposed to hide the window initially and only show it after rendering the first frame. | |||||
2022-08-18 | Remove `window::Mode` and introduce `Settings::visible` | 1 | -7/+6 | ||
Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows. | |||||
2022-04-30 | Fix broken intra-doc links in documentation | 1 | -0/+4 | ||
2022-01-19 | Add setting to try OpenGL ES first | 1 | -0/+6 | ||
2021-08-12 | Fix minor formatting nitpicks | 1 | -0/+3 | ||
2021-08-12 | Add PlatformSpecific winit settings for macOS | 1 | -3/+19 | ||
2021-08-11 | Introduce explicit `id` field to `Settings` | 1 | -1/+12 | ||
... and use it to set the application id of the window on Unix systems, instead of relying on the title of the application. | |||||
2021-08-11 | Match winit unix targets for wayland app_id | 1 | -1/+7 | ||
2021-08-11 | Add wayland app_id | 1 | -0/+6 | ||
see: https://github.com/wayland-project/wayland-protocols/blob/4ed0cafeefd9f81b974465ca495cbd9118508cdb/stable/xdg-shell/xdg-shell.xml#L640 | |||||
2021-07-21 | Improve `window::Position` API | 1 | -5/+14 | ||
2021-06-25 | done | 1 | -2/+3 | ||
2021-06-25 | wip | 1 | -0/+4 | ||
2021-05-27 | allow disabling drag and drop on windows | 1 | -0/+2 | ||
2021-04-09 | use Mode::Hidden instead | 1 | -2/+1 | ||
2021-04-08 | add window visibility | 1 | -1/+3 | ||
2021-03-30 | Add support for graceful exits in `Application` | 1 | -0/+4 | ||
- `Settings` now contains an `exit_on_close_request` field - `Application` has a new `should_exit` method | |||||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -3/+1 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-10-03 | update to winit 0.23 api | 1 | -1/+1 | ||
2020-09-28 | Fixes #539: Allow windows to be set always_on_top | 1 | -1/+6 | ||
2020-08-18 | Remove debug println & accidentally added whitespace | 1 | -6/+5 | ||
2020-08-18 | Add missing comment | 1 | -0/+1 | ||
2020-08-17 | Add 'transparent' in window setting | 1 | -5/+10 | ||
2020-07-01 | Move `Icon` to `iced` crate and introduce `Error` | 1 | -34/+4 | ||
2020-07-01 | Add support for setting window icon | 1 | -2/+37 | ||
This adds a new property from Settings::window::iconand a Icon struct which can be converted to winit::window::Icon. It also adds code to display this icon in Application::run. Due to the fact that the Icon struct is non copyable, I also had to remove the Copy trait from all Settings, both in `iced` and `iced_winit`. |