Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'feature/rule-widget' into master | 2020-08-22 | 1 | -3/+3 | |
|\ | |||||
| * | widget Rule added | 2020-08-22 | 1 | -3/+3 | |
| | | |||||
* | | Add 'transparent' in window setting | 2020-08-17 | 1 | -0/+5 | |
|/ | |||||
* | Rename `ComboBox` to `PickList` | 2020-07-10 | 1 | -5/+5 | |
| | |||||
* | Draft `ComboBox` and `Menu` layer | 2020-07-08 | 1 | -5/+5 | |
| | |||||
* | Export `Canvas` if `glow_canvas` feature is enabled | 2020-07-08 | 1 | -1/+1 | |
| | |||||
* | Move `Icon` to `iced` crate and introduce `Error` | 2020-07-01 | 4 | -5/+142 | |
| | |||||
* | Add support for setting window icon | 2020-07-01 | 2 | -2/+7 | |
| | | | | | | 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 | 2 | -7/+24 | |
| | |||||
* | Merge pull request #415 from hecrj/feature/configurable-scale-factor | 2020-06-20 | 2 | -1/+39 | |
|\ | | | | | Add `scale_factor` to `Application` and `Sandbox` | ||||
| * | Add `scale_factor` to `Application` and `Sandbox` | 2020-06-19 | 2 | -1/+39 | |
| | | |||||
* | | Make default text size configurable in `Settings` | 2020-06-19 | 2 | -3/+25 | |
|/ | |||||
* | Add `background_color` to `Application` and `Sandbox` | 2020-06-12 | 2 | -2/+34 | |
| | |||||
* | Revert "Merge pull request #371 from myfreeweb/window-alpha" | 2020-06-01 | 2 | -27/+2 | |
| | | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6. | ||||
* | Add custom window background/clear color (incl. transparency) support, fixes ↵ | 2020-06-01 | 2 | -2/+27 | |
| | | | | | | | | | | | | #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 | 5 | -29/+49 | |
| | | | | 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 | 5 | -35/+21 | |
| | |||||
* | Rename `window::Backend` to `Compositor` | 2020-05-19 | 1 | -1/+1 | |
| | |||||
* | Rename `MouseCursor` to `mouse::Interaction` | 2020-04-30 | 2 | -3/+2 | |
| | |||||
* | Disable `time` module on Wasm for now | 2020-04-30 | 1 | -1/+4 | |
| | |||||
* | Implement `time::every` in `iced_futures` | 2020-04-30 | 2 | -0/+18 | |
| | |||||
* | Remove inconsistent `input` module in `iced_native` | 2020-04-30 | 2 | -7/+2 | |
| | |||||
* | Remove `ButtonState` | 2020-04-30 | 1 | -3/+0 | |
| | |||||
* | Merge branch 'master' into feature/canvas-interaction | 2020-04-29 | 1 | -2/+2 | |
|\ | |||||
| * | Make `Font` an associated type of `text::Renderer` | 2020-04-23 | 1 | -2/+2 | |
| | | |||||
* | | Move `MouseCursor` to `iced_core` | 2020-04-29 | 1 | -1/+2 | |
| | | |||||
* | | Remove `Drawable` and rename `State` to `Program` | 2020-04-28 | 1 | -1/+1 | |
| | | |||||
* | | Move reusable `mouse` types to `iced_core` | 2020-04-28 | 2 | -0/+7 | |
|/ | |||||
* | Mention flags are not supported by `Sandbox` | 2020-04-15 | 1 | -3/+3 | |
| | | | | Fixes #291 | ||||
* | add helper for settings flags init | 2020-04-06 | 1 | -0/+16 | |
| | |||||
* | Document widget feature flags | 2020-04-05 | 2 | -1/+11 | |
| | |||||
* | Fix a couple of links in documentation | 2020-04-02 | 1 | -2/+1 | |
| | |||||
* | Write documentation for the `debug` feature | 2020-04-02 | 1 | -0/+3 | |
| | |||||
* | Improve docs for `Sandbox` and `Application` | 2020-04-02 | 5 | -107/+122 | |
| | |||||
* | Fix minor documentation issues | 2020-04-02 | 1 | -0/+4 | |
| | |||||
* | Clarify return policy of `Application::run` | 2020-04-02 | 2 | -6/+6 | |
| | |||||
* | Move `Space` to `widget` module | 2020-04-02 | 2 | -2/+2 | |
| | |||||
* | Implement `enter` for `executor::Default` in Wasm | 2020-03-30 | 1 | -1/+9 | |
| | |||||
* | Allow passing external state to `Application::new` | 2020-03-30 | 3 | -22/+44 | |
| | |||||
* | Create `PaneGrid` alias in `iced_wgpu` | 2020-03-19 | 1 | -3/+4 | |
| | |||||
* | Move common keyboard types to `iced_core` | 2020-03-17 | 2 | -0/+7 | |
| | | | | Also expose them in `iced` through `iced_native` and `iced_web`. | ||||
* | Rename `Panes` widget to `PaneGrid` | 2020-03-10 | 1 | -1/+1 | |
| | |||||
* | Draft `Panes` widget and `panes` example | 2020-03-04 | 1 | -1/+1 | |
| | |||||
* | Make output format of `iced_wgpu` configurable | 2020-02-24 | 1 | -0/+1 | |
| | |||||
* | Merge pull request #193 from hecrj/feature/canvas | 2020-02-20 | 3 | -1/+15 | |
|\ | | | | | Canvas widget for 2D graphics | ||||
| * | Rename `Settings::use_antialiasing` to `antialiasing` | 2020-02-18 | 2 | -3/+3 | |
| | | |||||
| * | Write documentation for new `canvas` module | 2020-02-18 | 1 | -1/+1 | |
| | | |||||
| * | Rename `Settings::antialiasing` to `use_antialiasing` | 2020-02-15 | 2 | -2/+2 | |
| | | |||||
| * | Implement MSAA for `triangle` pipeline in `iced_wgpu` | 2020-02-15 | 2 | -0/+14 | |
| | |