Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-12-14 | Support custom renderers in `iced_test` through `renderer::Headless` trait | 1 | -59/+0 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -44/+5 | ||
2024-03-17 | Move `Application` trait to `advanced` module | 1 | -5/+7 | ||
2024-03-16 | Introduce `Program` API | 1 | -1/+1 | ||
2023-09-20 | Fix `clippy::default_trait_access` | 1 | -2/+2 | ||
2023-09-18 | Flesh out the `editor` example a bit more | 1 | -0/+8 | ||
2023-09-09 | Fix majority of unresolved documentation links | 1 | -1/+1 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -3/+3 | ||
2023-07-24 | Moved `exit_on_close_request` to window settings. This now controls whether ↵ | 1 | -11/+0 | ||
each INDIVIDUAL window should close on CloseRequested events. | |||||
2023-07-21 | refactored window storage; | 1 | -1/+1 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-03-30 | Introduce support for `Font` attributes | 1 | -1/+1 | ||
2023-02-24 | Remove `iced_glutin` and `iced_glow` leftovers | 1 | -12/+0 | ||
2023-02-24 | Overhaul `Font` type to allow font family selection | 1 | -13/+5 | ||
2023-02-24 | Draft `glyphon` implementation of text pipeline for `iced_wgpu` | 1 | -2/+2 | ||
2023-02-17 | Use `Pixels` for `Text::size` | 1 | -3/+3 | ||
2022-01-28 | Replace `iced_web` with WebGL support in `wgpu` :tada: | 1 | -1/+0 | ||
2022-01-19 | Add setting to try OpenGL ES first | 1 | -0/+12 | ||
2021-11-17 | Fix a few doc links | 1 | -0/+2 | ||
2021-08-11 | Introduce explicit `id` field to `Settings` | 1 | -2/+11 | ||
... and use it to set the application id of the window on Unix systems, instead of relying on the title of the application. | |||||
2021-07-22 | Introduce `text_multithreading` to `Settings` | 1 | -5/+15 | ||
2021-03-30 | Add support for graceful exits in `Application` | 1 | -4/+11 | ||
- `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 | -6/+4 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-07-01 | Move `Icon` to `iced` crate and introduce `Error` | 1 | -1/+1 | ||
2020-07-01 | Add support for setting window icon | 1 | -1/+1 | ||
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`. | |||||
2020-06-25 | Add `min_size` and `max_size` to `window::Settings` | 1 | -6/+1 | ||
2020-06-19 | Make default text size configurable in `Settings` | 1 | -3/+24 | ||
2020-06-01 | Revert "Merge pull request #371 from myfreeweb/window-alpha" | 1 | -26/+2 | ||
This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6. | |||||
2020-06-01 | Add custom window background/clear color (incl. transparency) support, fixes ↵ | 1 | -2/+26 | ||
#272 wgpu would currently ignore the alpha: https://github.com/gfx-rs/wgpu/issues/687 glow (and naively patched wgpu) requires premultiplied alpha, so if you don't multiply the RGB by the A right now, the semi-transparent color would be wrong (too bright). winit with_transparent doesn't seem necessary. | |||||
2020-05-27 | Introduce feature flags to enable `iced_glow` | 1 | -4/+4 | ||
Also keep `iced_wgpu` as the default renderer for the time being. | |||||
2020-05-21 | Implement `iced_glutin` :tada: | 1 | -4/+4 | ||
2020-04-06 | add helper for settings flags init | 1 | -0/+16 | ||
2020-04-02 | Improve docs for `Sandbox` and `Application` | 1 | -2/+4 | ||
2020-03-30 | Allow passing external state to `Application::new` | 1 | -3/+9 | ||
2020-02-18 | Rename `Settings::use_antialiasing` to `antialiasing` | 1 | -2/+2 | ||
2020-02-15 | Rename `Settings::antialiasing` to `use_antialiasing` | 1 | -1/+1 | ||
2020-02-15 | Implement MSAA for `triangle` pipeline in `iced_wgpu` | 1 | -0/+9 | ||
2020-01-16 | Expose `window::Mode` in `iced` | 1 | -25/+3 | ||
Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side. | |||||
2020-01-09 | Write missing docs and reenable deny statements | 1 | -10/+4 | ||
2020-01-05 | Remove `background` from `Settings` | 1 | -8/+0 | ||
2020-01-01 | Allow configuration of default font | 1 | -0/+4 | ||
2019-12-29 | Rename `Settings::background_color` to `background` | 1 | -3/+3 | ||
2019-12-29 | Add `background_color` to `Settings` | 1 | -1/+17 | ||
2019-12-03 | Add `decorations` to `settings::Window` | 1 | -4/+12 | ||
2019-12-02 | Modify src/settings.rs to keep original API | 1 | -16/+4 | ||
2019-12-01 | Remove platform-specific logic from iced | 1 | -12/+2 | ||
Make Window.platform_specific use iced_winit::settings::PlatformSpecific | |||||
2019-11-30 | Add platform specific settings | 1 | -0/+15 | ||
2019-11-30 | Add `decorations` to Setting | 1 | -0/+5 | ||
2019-11-25 | Allow `Application` configuration with `Settings` | 1 | -0/+43 | ||