Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace `iced_web` with WebGL support in `wgpu` :tada: | 2022-01-28 | 1 | -1/+0 | |
| | |||||
* | Add setting to try OpenGL ES first | 2022-01-19 | 1 | -0/+12 | |
| | |||||
* | Fix a few doc links | 2021-11-17 | 1 | -0/+2 | |
| | |||||
* | Introduce explicit `id` field to `Settings` | 2021-08-11 | 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. | ||||
* | Introduce `text_multithreading` to `Settings` | 2021-07-22 | 1 | -5/+15 | |
| | |||||
* | Add support for graceful exits in `Application` | 2021-03-30 | 1 | -4/+11 | |
| | | | | | - `Settings` now contains an `exit_on_close_request` field - `Application` has a new `should_exit` method | ||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -6/+4 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Move `Icon` to `iced` crate and introduce `Error` | 2020-07-01 | 1 | -1/+1 | |
| | |||||
* | Add support for setting window icon | 2020-07-01 | 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`. | ||||
* | Add `min_size` and `max_size` to `window::Settings` | 2020-06-25 | 1 | -6/+1 | |
| | |||||
* | Make default text size configurable in `Settings` | 2020-06-19 | 1 | -3/+24 | |
| | |||||
* | Revert "Merge pull request #371 from myfreeweb/window-alpha" | 2020-06-01 | 1 | -26/+2 | |
| | | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6. | ||||
* | Add custom window background/clear color (incl. transparency) support, fixes ↵ | 2020-06-01 | 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. | ||||
* | add helper for settings flags init | 2020-04-06 | 1 | -0/+16 | |
| | |||||
* | Improve docs for `Sandbox` and `Application` | 2020-04-02 | 1 | -2/+4 | |
| | |||||
* | Allow passing external state to `Application::new` | 2020-03-30 | 1 | -3/+9 | |
| | |||||
* | Rename `Settings::use_antialiasing` to `antialiasing` | 2020-02-18 | 1 | -2/+2 | |
| | |||||
* | Rename `Settings::antialiasing` to `use_antialiasing` | 2020-02-15 | 1 | -1/+1 | |
| | |||||
* | Implement MSAA for `triangle` pipeline in `iced_wgpu` | 2020-02-15 | 1 | -0/+9 | |
| | |||||
* | Expose `window::Mode` in `iced` | 2020-01-16 | 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. | ||||
* | Write missing docs and reenable deny statements | 2020-01-09 | 1 | -10/+4 | |
| | |||||
* | Remove `background` from `Settings` | 2020-01-05 | 1 | -8/+0 | |
| | |||||
* | Allow configuration of default font | 2020-01-01 | 1 | -0/+4 | |
| | |||||
* | Rename `Settings::background_color` to `background` | 2019-12-29 | 1 | -3/+3 | |
| | |||||
* | Add `background_color` to `Settings` | 2019-12-29 | 1 | -1/+17 | |
| | |||||
* | Add `decorations` to `settings::Window` | 2019-12-03 | 1 | -4/+12 | |
| | |||||
* | Modify src/settings.rs to keep original API | 2019-12-02 | 1 | -16/+4 | |
| | |||||
* | Remove platform-specific logic from iced | 2019-12-01 | 1 | -0/+53 | |
| | | | | Make Window.platform_specific use iced_winit::settings::PlatformSpecific | ||||
* | Add platform specific settings | 2019-11-30 | 1 | -48/+0 | |
| | |||||
* | Add `decorations` to Setting | 2019-11-30 | 1 | -0/+5 | |
| | |||||
* | Allow `Application` configuration with `Settings` | 2019-11-25 | 1 | -0/+43 | |