Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use recently stabilized intra-doc links | 2020-11-26 | 8 | -23/+2 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Limit border radius to max dimension in `quad` pipeline | 2020-11-23 | 1 | -0/+5 | |
| | |||||
* | Implement `QRCode` widget | 2020-11-20 | 3 | -0/+11 | |
| | |||||
* | Remove `Focus` in `pane_grid` | 2020-11-17 | 1 | -2/+2 | |
| | | | | Since #608, the `PaneGrid` widget does not handle pane focus. | ||||
* | Merge pull request #610 from hecrj/improvement/update-dependencies | 2020-11-11 | 1 | -4/+4 | |
|\ | | | | | Update dependencies | ||||
| * | Update `bytemuck` dependency in `iced_glow` | 2020-11-10 | 1 | -1/+1 | |
| | | |||||
| * | Update `glow` and `glow_glyph` dependencies in `iced_glow` | 2020-11-10 | 1 | -2/+2 | |
| | | |||||
| * | Update `euclid` dependency in `iced_glow` | 2020-11-10 | 1 | -1/+1 | |
| | | |||||
* | | Restore hotkeys in `pane_grid` example | 2020-11-10 | 1 | -2/+2 | |
|/ | | | | | | - Implement `subscription::events_with` - Remove `pane_grid::KeyPressEvent` - Return closest sibling in `pane_grid::State::close` | ||||
* | Make `Application` and `Sandbox` return a `Result` | 2020-09-08 | 2 | -4/+4 | |
| | |||||
* | Merge branch 'feature/rule-widget' into master | 2020-08-22 | 2 | -0/+13 | |
|\ | |||||
| * | added FillMode enum style for the Rule widget | 2020-08-22 | 1 | -1/+1 | |
| | | |||||
| * | widget Rule added | 2020-08-22 | 2 | -0/+13 | |
| | | |||||
* | | Upgrade glam to 0.9 & use glam's Mat4 ortho rh gl. | 2020-08-17 | 1 | -1/+0 | |
|/ | |||||
* | Update `glow` to `0.5` in `iced_glow` | 2020-07-27 | 3 | -10/+10 | |
| | |||||
* | Rename `ComboBox` to `PickList` | 2020-07-10 | 3 | -12/+12 | |
| | |||||
* | Write documentation for the new `overlay` API | 2020-07-10 | 2 | -1/+2 | |
| | |||||
* | Merge branch 'master' into feature/overlay | 2020-07-10 | 1 | -2/+14 | |
|\ | |||||
| * | Merge branch 'master' into feature/pane-grid-titlebar | 2020-07-08 | 4 | -4/+18 | |
| |\ | |||||
| * | | Expose `Content` and `TitleBar` in `iced_glow` | 2020-06-10 | 1 | -2/+14 | |
| | | | |||||
| * | | Merge branch 'intuitive-pane-grid-resize' into feature/pane-grid-titlebar | 2020-06-08 | 1 | -4/+4 | |
| |\ \ | |||||
| * | | | Draft first-class `TitleBar` in `pane_grid` | 2020-06-04 | 1 | -2/+2 | |
| | | | | |||||
* | | | | Add styling support for `ComboBox` and `Menu` | 2020-07-08 | 1 | -1/+6 | |
| | | | | |||||
* | | | | Render arrow icon in `ComboBox` | 2020-07-08 | 1 | -0/+1 | |
| | | | | |||||
* | | | | Draft `ComboBox` and `Menu` layer | 2020-07-08 | 3 | -1/+7 | |
| |_|/ |/| | | |||||
* | | | Make default text size configurable in `Settings` | 2020-06-19 | 2 | -0/+12 | |
| | | | |||||
* | | | Merge pull request #407 from hecrj/feature/generic-slider | 2020-06-14 | 1 | -1/+1 | |
|\ \ \ | | | | | | | | | Make `Slider` value type generic | ||||
| * | | | Make `Slider` value type generic | 2020-06-13 | 1 | -1/+1 | |
| | |/ | |/| | |||||
* / | | Add `background_color` to `Application` and `Sandbox` | 2020-06-12 | 1 | -3/+5 | |
|/ / | |||||
* / | Replace leftover docs in progress bar module (#396) | 2020-06-08 | 1 | -4/+4 | |
|/ | | | | | | | * Replace leftover docs in progress bar module * Fix consistency of `ProgressBar` docs Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com> | ||||
* | Rename `Rectangle::round` to `snap` | 2020-06-02 | 2 | -2/+2 | |
| | | | | | Also use `ceil` instead of `round`. Closes #380. | ||||
* | Revert "Merge pull request #371 from myfreeweb/window-alpha" | 2020-06-01 | 2 | -12/+2 | |
| | | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6. | ||||
* | Merge pull request #371 from myfreeweb/window-alpha | 2020-06-01 | 2 | -2/+12 | |
|\ | | | | | Add custom window background/clear color (incl. transparency) support, fixes #272 | ||||
| * | Add custom window background/clear color (incl. transparency) support, fixes ↵ | 2020-06-01 | 2 | -2/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | #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. | ||||
* | | Feature gate `font-kit` behind `"default_system_font"` feature. | 2020-05-31 | 2 | -7/+13 | |
|/ | |||||
* | Fix `Backend` link in `iced_glow` docs | 2020-05-30 | 1 | -1/+1 | |
| | |||||
* | Expose `Backend` in `iced_glow` | 2020-05-30 | 2 | -4/+9 | |
| | |||||
* | Expose `pane_grid::{Node, Content}` in `iced_glow` | 2020-05-29 | 1 | -2/+2 | |
| | |||||
* | Revert "Target physical pixels for quads in `iced_glow`" | 2020-05-28 | 1 | -6/+6 | |
| | | | | This reverts commit 45511a442f707e93fe6e568d2100756b63af7362. | ||||
* | Enable `doc_cfg` for `docs.rs` in `iced_glow` | 2020-05-28 | 2 | -0/+5 | |
| | |||||
* | Write documentation for `iced_glow` | 2020-05-28 | 3 | -9/+17 | |
| | |||||
* | Target physical pixels for quads in `iced_glow` | 2020-05-27 | 1 | -6/+6 | |
| | |||||
* | Update `glyph_brush` and `glow_glyph` | 2020-05-27 | 3 | -56/+40 | |
| | |||||
* | Introduce feature flags to enable `iced_glow` | 2020-05-27 | 1 | -0/+1 | |
| | | | | Also keep `iced_wgpu` as the default renderer for the time being. | ||||
* | Use published `glow` and `glow_glyph` versions | 2020-05-22 | 3 | -16/+10 | |
| | |||||
* | Use built-in OpenGL multisampling in `iced_glow` | 2020-05-22 | 3 | -209/+57 | |
| | |||||
* | Use `get_uniform_location` for wider compatibility | 2020-05-22 | 7 | -48/+93 | |
| | |||||
* | Use git repository for `glow_glyph` | 2020-05-22 | 1 | -1/+2 | |
| | |||||
* | Implement MSAA for triangle meshes in `iced_glow` | 2020-05-22 | 1 | -41/+195 | |
| | |||||
* | Update to latest `glow` | 2020-05-21 | 3 | -25/+17 | |
| |