Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | | Avoid adding unnecessary spans when syntax highlighting | 2023-09-17 | 1 | -1/+1 | ||
| | | | | ||||||
| | * | | Implement syntax highlighting cache in `editor` example | 2023-09-17 | 1 | -0/+4 | ||
| | | | | ||||||
| | * | | Use fork of `cosmic-text` with some minor fixes | 2023-09-16 | 1 | -0/+4 | ||
| | | | | ||||||
| * | | | Use upstream repository for `glyphon` dependency | 2023-10-27 | 1 | -1/+1 | ||
| | |/ | |/| | ||||||
| * | | Update `wgpu` to `0.18` and `cosmic-text` to `0.10` | 2023-10-27 | 1 | -3/+3 | ||
| |/ | ||||||
| * | Use workspace dependencies and package inheritance | 2023-09-04 | 1 | -36/+99 | ||
| | | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version. | |||||
| * | Enable WebGPU backend in `wgpu` by default instead of WebGL | 2023-09-04 | 1 | -0/+2 | ||
| | | | | | | | | Instead, we expose a new `webgl` feature. | |||||
| * | Enable all features in `docs.rs` | 2023-07-28 | 1 | -1/+1 | ||
| | | ||||||
| * | Bump versions :tada: | 2023-07-28 | 1 | -4/+4 | ||
| | | ||||||
* | | refactored window storage; | 2023-07-21 | 1 | -1/+1 | ||
| | | | | | | | | | | new helper window events (Destroyed, Created); clippy + fmt; | |||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-07-12 | 1 | -35/+22 | ||
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Cargo.toml # core/src/window/icon.rs # core/src/window/id.rs # core/src/window/position.rs # core/src/window/settings.rs # examples/integration/src/main.rs # examples/integration_opengl/src/main.rs # glutin/src/application.rs # native/src/subscription.rs # native/src/window.rs # runtime/src/window/action.rs # src/lib.rs # src/window.rs # winit/Cargo.toml # winit/src/application.rs # winit/src/icon.rs # winit/src/settings.rs # winit/src/window.rs | |||||
| * | Introduce `web-colors` feature flag to enable sRGB linear blending | 2023-05-31 | 1 | -0/+2 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is how browsers perform color management. They treat gamma-corrected sRGB colors as if they were linear RGB. Correctness aside, this mode is introduced for legacy reasons. Most UI/UX tooling uses this color management as well, and many have created an intuition about how color should behave from interacting with a browser. This feature flag should facilitate application development with `iced` in those cases. More details: https://webcolorisstillbroken.com/ | |||||
| * | Bundle `tiny-skia` backend together with `iced_renderer` | 2023-05-10 | 1 | -3/+1 | ||
| | | ||||||
| * | Merge branch 'master' into advanced-text | 2023-04-17 | 1 | -3/+3 | ||
| |\ | ||||||
| | * | Bump versions :tada: | 2023-04-13 | 1 | -9/+9 | ||
| | | | ||||||
| * | | Introduce backend feature flags in `iced_renderer` | 2023-03-06 | 1 | -0/+6 | ||
| | | | ||||||
| * | | Rename `iced_native` to `iced_runtime` | 2023-03-05 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -18/+11 | ||
| | | | ||||||
| * | | Move `Canvas` and `QRCode` to `iced` crate | 2023-03-03 | 1 | -2/+7 | ||
| | | | | | | | | | | | | Rename `canvas` modules to `geometry` in graphics subcrates | |||||
| * | | Use `iced_renderer` instead of `iced_graphics` in root crate | 2023-02-28 | 1 | -3/+2 | ||
| | | | ||||||
| * | | Scaffold `iced_tiny_skia` and connect it to `iced_renderer` | 2023-02-25 | 1 | -0/+1 | ||
| | | | ||||||
| * | | Introduce `iced_renderer` subcrate featuring runtime renderer fallback | 2023-02-24 | 1 | -9/+5 | ||
| | | | ||||||
| * | | Make `iced_wgpu` a mandatory dependency | 2023-02-24 | 1 | -8/+5 | ||
| | | | ||||||
| * | | Remove `iced_glutin` and `iced_glow` leftovers | 2023-02-24 | 1 | -3/+0 | ||
| | | | ||||||
| * | | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies | 2023-02-24 | 1 | -9/+2 | ||
| |/ | ||||||
* | | Code cleanup, clearer comments + removed some unnecessary dupe; | 2023-03-13 | 1 | -2/+2 | ||
| | | | | | | | | | | Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping; | |||||
* | | Removed glutin MW support and reverted glutin changes back to Iced master ↵ | 2023-02-28 | 1 | -2/+2 | ||
| | | | | | | | | since it's being axed as we speak. | |||||
* | | Cargo fix | 2023-02-20 | 1 | -1/+1 | ||
| | | ||||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-02-20 | 1 | -10/+10 | ||
|\| | ||||||
| * | Bump versions :tada: | 2023-02-18 | 1 | -10/+10 | ||
| | | ||||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-01-18 | 1 | -9/+9 | ||
|\| | | | | | | | | | | | | | | | # Conflicts: # examples/events/src/main.rs # glutin/src/application.rs # native/src/window.rs # winit/src/window.rs | |||||
| * | Bump versions :tada: | 2023-01-14 | 1 | -9/+9 | ||
| | | ||||||
* | | Introduce `multi_window` to `iced_glutin` | 2023-01-09 | 1 | -1/+1 | ||
| | | ||||||
* | | Introduce `multi_window` in `iced_winit` | 2023-01-09 | 1 | -1/+1 | ||
| | | ||||||
* | | Introduce `multi_window` from `pure` | 2023-01-09 | 1 | -0/+2 | ||
|/ | ||||||
* | Restructured everything to make profiling a feature of iced_winit. | 2023-01-09 | 1 | -8/+5 | ||
| | ||||||
* | Initial profiling support for Iced. | 2023-01-09 | 1 | -0/+10 | ||
| | ||||||
* | Bump versions :tada: | 2022-12-07 | 1 | -8/+8 | ||
| | ||||||
* | Add modal example | 2022-11-29 | 1 | -34/+1 | ||
| | ||||||
* | Re-introduce the `geometry` example | 2022-11-28 | 1 | -0/+1 | ||
| | ||||||
* | Bump versions :tada: | 2022-11-10 | 1 | -1/+1 | ||
| | ||||||
* | Update `README` | 2022-11-10 | 1 | -1/+1 | ||
| | ||||||
* | Bump versions :tada: | 2022-11-10 | 1 | -10/+10 | ||
| | ||||||
* | Merge pull request #1505 from ids1024/weak-dep-feature | 2022-11-08 | 1 | -4/+1 | ||
|\ | | | | | Combine `glow_default_system_font` and `default_system_font` features | |||||
| * | Combine `glow_default_system_font` and `default_system_font` features | 2022-11-03 | 1 | -4/+1 | ||
| | | | | | | | | | | | | | | | | | | Apparently "weak dependency features" have been stable since Rust 1.60.0, allowing a feature to enable a feature of a dependency only if that dependency is enabled elsewhere. So having a separate feature for this with glow is unnecessary now. Also remove the `resolver` setting which is redundant on edition 2021. | |||||
* | | Update `image` dependency to `0.24` | 2022-11-05 | 1 | -1/+1 | ||
| | | ||||||
* | | Add image/svg support to `iced_glow` | 2022-11-05 | 1 | -2/+2 | ||
|/ | | | | | | | | | | https://github.com/iced-rs/iced/issues/674 Uses image/svg support in `iced_graphics`. The is not currently using an atlas, and uses one texture/draw per image. This should be good enough for now; supporting images with glow is better than not supporting them, and if something else performs better, that improvement can be made without any change to the public API. | |||||
* | Merge branch 'master' into fear/linear-gradients | 2022-11-03 | 1 | -0/+1 | ||
|\ | ||||||
| * | Rename `cached` example to `lazy` | 2022-11-03 | 1 | -1/+1 | ||
| | | ||||||
| * | add example | 2022-11-03 | 1 | -0/+1 | ||
| | |