Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update `lyon` to `1.0` :tada: | 2022-07-11 | 4 | -9/+8 | |
| | | | | Congrats and thanks to @nical! | ||||
* | Merge pull request #1358 from ThatsNoMoon/fix-arc_to | 2022-07-10 | 6 | -12/+199 | |
|\ | | | | | Fix `arc_to` | ||||
| * | Use `Palette` consistently in `arc` example | 2022-07-10 | 1 | -6/+4 | |
| | | |||||
| * | Fix `README` or `arc` example | 2022-07-10 | 1 | -2/+2 | |
| | | |||||
| * | Add and purify `arc` example by @ThatsNoMoon | 2022-07-10 | 5 | -5/+155 | |
| | | |||||
| * | fix another discrepancy with HTML5 arcTo | 2022-07-10 | 1 | -7/+12 | |
| | | | | | | | | | | HTML5's arcTo does not draw a line from the end of the arc to `b`, so this should not either. | ||||
| * | fix arc_to | 2022-07-10 | 1 | -7/+41 | |
|/ | | | | | Fixed `path::Builder::arc_to` to behave the same as [HTML5's `arcTo`] ( https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-arcto ). | ||||
* | Merge pull request #1379 from PolyMeilex/fix/clippy | 2022-07-09 | 113 | -510/+607 | |
|\ | | | | | Address Clippy lints | ||||
| * | Fix Wasm build of `todos` example | 2022-07-09 | 2 | -14/+14 | |
| | | |||||
| * | Fix `clippy` lints for all crates and features | 2022-07-09 | 55 | -232/+237 | |
| | | | | | | | | ... and check those in CI as well! | ||||
| * | Add `lint` workflow to run `cargo clippy` | 2022-07-09 | 1 | -0/+12 | |
| | | |||||
| * | Fix further `clippy` lints | 2022-07-09 | 33 | -85/+197 | |
| | | | | | | | | ... and explicitly annotate crates as well. | ||||
| * | Run `cargo fmt` | 2022-07-09 | 2 | -10/+3 | |
| | | |||||
| * | Address Clippy lints | 2022-07-09 | 43 | -173/+148 | |
| | | |||||
* | | Merge pull request #1373 from fralonra/patch-2 | 2022-07-09 | 1 | -2/+4 | |
|\ \ | |/ |/| | Update import path in pure canvas example | ||||
| * | Fix doc example in `pure::canvas::Program` | 2022-07-09 | 1 | -1/+3 | |
| | | | | | | The `widget` module was missing. | ||||
| * | Update import path in pure canvas example | 2022-07-09 | 1 | -1/+1 | |
|/ | | | | | In current version, `iced::pure::canvas` would be unresolved. It should be `iced::pure::widget::canvas`. | ||||
* | Merge pull request #1362 from iced-rs/theming | 2022-07-09 | 142 | -2873/+2896 | |
|\ | | | | | Theming | ||||
| * | Remove redundant `crate::Theme` in alias of `Element` | 2022-07-08 | 2 | -2/+2 | |
| | | |||||
| * | Make `Element` aliases in `iced` compatible with `iced_native` and `iced_pure` | 2022-07-08 | 4 | -9/+15 | |
| | | |||||
| * | Fix missing docs in `iced` crate | 2022-07-08 | 3 | -1/+3 | |
| | | |||||
| * | Make widget aliases in `iced` compatible with `iced_native` | 2022-07-08 | 2 | -80/+58 | |
| | | |||||
| * | Fix inconsistent styling for `Radio` and `Checkbox` | 2022-07-08 | 1 | -2/+11 | |
| | | |||||
| * | Add `theme::Application` styling support to `Sandbox` | 2022-07-08 | 2 | -62/+22 | |
| | | |||||
| * | Add `Style` variant support to `application::StyleSheet` | 2022-07-08 | 11 | -43/+148 | |
| | | |||||
| * | Merge branch 'master' into theming | 2022-07-08 | 34 | -341/+448 | |
| |\ | |/ |/| | |||||
* | | Merge pull request #1378 from Cupnfish/wgpu-0.13 | 2022-07-03 | 15 | -156/+151 | |
|\ \ | | | | | | | update `wgpu` to `0.13` | ||||
| * | | Replace name abbreviation in `iced_wgpu` | 2022-07-03 | 1 | -1/+1 | |
| | | | |||||
| * | | Simplify format selection in `iced_wgpu` | 2022-07-03 | 1 | -6/+1 | |
| | | | |||||
| * | | Use `expect` in `integration_wgpu` example | 2022-07-03 | 1 | -1/+5 | |
| | | | | | | | | | | | | ... together with `first` and `copied`. | ||||
| * | | Use latest `wgpu_glyph` release on crates.io | 2022-07-03 | 1 | -1/+1 | |
| | | | |||||
| * | | better `wgsl` code style | 2022-07-02 | 4 | -11/+11 | |
| | | | |||||
| * | | fix `wgsl` syntax | 2022-07-02 | 1 | -1/+1 | |
| | | | |||||
| * | | remove unnecessary `Cargo.toml` formatting | 2022-07-02 | 1 | -22/+22 | |
| | | | |||||
| * | | replace `path` to `git` | 2022-07-02 | 1 | -23/+23 | |
| | | | |||||
| * | | update `wgpu` to `0.13` | 2022-07-02 | 15 | -145/+141 | |
|/ / | |||||
* | | Bump versions :tada: | 2022-07-01 | 2 | -2/+2 | |
| | | |||||
* | | Merge pull request #1376 from iced-rs/fix/canvas-state-tag | 2022-07-01 | 2 | -3/+3 | |
|\ \ | | | | | | | Fix `Widget::tag` implementation of `pure::Canvas` | ||||
| * | | Fix `Widget::tag` implementation of `pure::Canvas` | 2022-07-01 | 2 | -3/+3 | |
|/ / | | | | | | | | | Using `P::State` can cause a panic if the `Canvas` has `()` as `P::State` and replaces a stateless widget in a future `view` call. | ||||
* | | Merge pull request #1371 from tarkah/feat/pure-text-input-value-override | 2022-06-27 | 1 | -0/+26 | |
|\ \ | | | | | | | Allow overriding pure text_input value during draw | ||||
| * | | Allow overriding pure text_input value during draw | 2022-06-23 | 1 | -0/+26 | |
|/ / | |||||
* | | Merge pull request #1370 from jhannyjimenez/canvas_documentation_clarification | 2022-06-23 | 1 | -1/+8 | |
|\ \ | | | | | | | Added more clarification as to how the position and alignment of the … | ||||
| * | | Added more clarification as to how the position and alignment of the Canvas ↵ | 2022-06-22 | 1 | -1/+8 | |
| | | | | | | | | | | | | Text structure interact | ||||
* | | | Merge pull request #1361 from mtkennerly/feature/prevent-overlapping-title-bar | 2022-06-23 | 2 | -52/+97 | |
|\ \ \ | |/ / |/| | | Prevent pane grid title bar content and controls from overlapping | ||||
| * | | Prevent pane grid title bar content and controls from overlapping | 2022-06-07 | 2 | -52/+97 | |
| | | | |||||
* | | | Merge pull request #1367 from tarkah/fix/wgpu-msaa-alpha-blending | 2022-06-17 | 3 | -28/+8 | |
|\ \ \ | | | | | | | | | Fix alpha blending for wgpu msaa | ||||
| * | | | Fix alpha blending for wgpu msaa | 2022-06-16 | 3 | -28/+8 | |
|/ / / | |||||
* / / | Update web instructions of the `tour` example | 2022-06-10 | 2 | -7/+7 | |
|/ / | |||||
* | | Merge pull request #1356 from casperstorm/fix/readme | 2022-06-02 | 1 | -22/+32 | |
|\ \ | | | | | | | fix: corrected images in `README.md` to be similar height. | ||||
| * | | corrected images in README to be similar height | 2022-06-02 | 1 | -22/+32 | |
|/ / |