Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -38/+12 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Remove `executor::Null` from the root public API | 2020-10-17 | 1 | -1/+1 | |
| | | | | | | | Using an `Application` with `executor::Null` does not make sense, as the whole purpose of an `Application` is to allow executing async actions. When async actions are not needed, `Sandbox` should be used instead. | ||||
* | Make `Application` and `Sandbox` return a `Result` | 2020-09-08 | 1 | -9/+13 | |
| | |||||
* | Merge pull request #415 from hecrj/feature/configurable-scale-factor | 2020-06-20 | 1 | -0/+19 | |
|\ | | | | | Add `scale_factor` to `Application` and `Sandbox` | ||||
| * | Add `scale_factor` to `Application` and `Sandbox` | 2020-06-19 | 1 | -0/+19 | |
| | | |||||
* | | Make default text size configurable in `Settings` | 2020-06-19 | 1 | -0/+1 | |
|/ | |||||
* | Add `background_color` to `Application` and `Sandbox` | 2020-06-12 | 1 | -1/+17 | |
| | |||||
* | Revert "Merge pull request #371 from myfreeweb/window-alpha" | 2020-06-01 | 1 | -1/+0 | |
| | | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6. | ||||
* | Add custom window background/clear color (incl. transparency) support, fixes ↵ | 2020-06-01 | 1 | -0/+1 | |
| | | | | | | | | | | | | #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. | ||||
* | Introduce feature flags to enable `iced_glow` | 2020-05-27 | 1 | -12/+12 | |
| | | | | Also keep `iced_wgpu` as the default renderer for the time being. | ||||
* | Introduce `Program` and `State` | 2020-05-21 | 1 | -15/+22 | |
| | |||||
* | Implement `iced_glutin` :tada: | 2020-05-21 | 1 | -10/+10 | |
| | |||||
* | Rename `window::Backend` to `Compositor` | 2020-05-19 | 1 | -1/+1 | |
| | |||||
* | Write documentation for the `debug` feature | 2020-04-02 | 1 | -0/+3 | |
| | |||||
* | Improve docs for `Sandbox` and `Application` | 2020-04-02 | 1 | -49/+50 | |
| | |||||
* | Clarify return policy of `Application::run` | 2020-04-02 | 1 | -4/+4 | |
| | |||||
* | Allow passing external state to `Application::new` | 2020-03-30 | 1 | -17/+32 | |
| | |||||
* | Make output format of `iced_wgpu` configurable | 2020-02-24 | 1 | -0/+1 | |
| | |||||
* | Rename `Settings::use_antialiasing` to `antialiasing` | 2020-02-18 | 1 | -1/+1 | |
| | |||||
* | Write documentation for new `canvas` module | 2020-02-18 | 1 | -1/+1 | |
| | |||||
* | 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/+5 | |
| | |||||
* | Allow `iced_wgpu` to render to any `TextureView` | 2020-02-09 | 1 | -1/+1 | |
| | |||||
* | Support event subscriptions in `iced_web` | 2020-02-04 | 1 | -0/+5 | |
| | | | | Also improves the overall web runtime, avoiding nested update loops. | ||||
* | Add `Application::Executor` associated type | 2020-01-20 | 1 | -2/+12 | |
| | |||||
* | Expose `window::Mode` in `iced` | 2020-01-16 | 1 | -1/+22 | |
| | | | | | 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. | ||||
* | Remove Clone bound on Application::Message | 2020-01-12 | 1 | -1/+1 | |
| | |||||
* | Allow configuration of default font | 2020-01-01 | 1 | -1/+6 | |
| | |||||
* | Fix missing `Subscription` type in `iced_web` | 2019-12-18 | 1 | -2/+2 | |
| | |||||
* | Write docs for subscriptions and reorganize a bit | 2019-12-14 | 1 | -4/+13 | |
| | |||||
* | Draft first version of event subscriptions :tada: | 2019-12-05 | 1 | -1/+10 | |
| | |||||
* | Allow `Application` configuration with `Settings` | 2019-11-25 | 1 | -5/+5 | |
| | |||||
* | Spawn `Command` futures in `iced_web` | 2019-11-24 | 1 | -1/+1 | |
| | |||||
* | Make `tour` work with `iced_web` again :tada: | 2019-11-23 | 1 | -4/+14 | |
| | | | | | - Implements `TextInput`, `Scrollable`, and `Container` - Adds basic style generation | ||||
* | Write docs for `iced` and `iced_native` | 2019-11-22 | 1 | -4/+125 | |
| | |||||
* | Implement `iced::Sandbox` trait for simple apps | 2019-11-21 | 1 | -0/+69 | |