Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-02-24 | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies | 1 | -257/+0 | ||
2022-07-09 | Address Clippy lints | 1 | -2/+3 | ||
2022-01-28 | Use glow_glyp in opengl_integration example | 1 | -1/+1 | ||
2022-01-28 | Experimental wgpu WebGL backend support | 1 | -4/+8 | ||
- Added missing `draw_cache_align_4x4` call for `brush_glyph` on wasm32 target - Added WebGL support to `integratio_wgpu` example - Fixed test.yml CI workflow - Removed spir-v shader in `integration_wgpu`; Fixed formatting - Removed redundant `BoxStream` typedef | |||||
2021-10-31 | Introduce first-class `text` module in `iced_native` | 1 | -1/+1 | ||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -1/+1 | ||
2021-09-15 | Use `Iterator::min_by` instead of `fold` in `hit_test` | 1 | -13/+11 | ||
2021-09-15 | Use `Option` to encode empty text case in hit test methods | 1 | -8/+10 | ||
2021-08-26 | Rename `HitTestResult` to `Hit` | 1 | -8/+8 | ||
... and also move it to a new `text` module in `iced_core` | |||||
2021-08-21 | Implement textual hit testing | 1 | -0/+92 | ||
2021-07-22 | Add `text_multithreading` to `Settings` in `iced_glow` and `iced_wgpu` | 1 | -4/+6 | ||
2021-06-14 | feat: expose draw_cache_multithread | 1 | -1/+3 | ||
2020-05-31 | Feature gate `font-kit` behind `"default_system_font"` feature. | 1 | -6/+11 | ||
2020-05-27 | Update `glyph_brush` and `glow_glyph` | 1 | -43/+26 | ||
2020-05-21 | Remove unused `overlay_font` in `iced_glow` | 1 | -6/+6 | ||
2020-05-19 | Move built-in fonts to `iced_graphics` | 1 | -12/+2 | ||
2020-05-19 | Move `font::Source` to `iced_graphics` | 1 | -3/+1 | ||
2020-05-19 | Draft new `iced_graphics` crate :tada: | 1 | -1/+1 | ||
2020-05-19 | Draft first working version of `iced_glow` :tada: | 1 | -33/+25 | ||
2020-04-16 | Change `&mut wgpu::Device` to `&wgpu::Device` (#299) | 1 | -2/+2 | ||
* Change `&mut wgpu::Device` to `&wgpu::Device` * Fix for rustfmt | |||||
2020-02-24 | Make output format of `iced_wgpu` configurable | 1 | -2/+6 | ||
2020-01-01 | Allow configuration of default font | 1 | -4/+7 | ||
2019-12-18 | Resize text measure cache to avoid panic | 1 | -5/+17 | ||
This should not be really necessary, as we are not really drawing anything with the measure brush... But we are using `glyph_brush` in an unconventional way, so that may be the cause. We need to redesign `wgpu_glyph` or come up with an alternative. | |||||
2019-11-26 | Stop loading a mono font just for the debug view | 1 | -15/+3 | ||
2019-11-26 | Fallback to embedded font when system font fails | 1 | -11/+25 | ||
2019-11-22 | Write docs for `iced_wgpu` | 1 | -5/+7 | ||
2019-11-14 | Draw proper checkmark for `Checkbox` in `iced_wgpu` | 1 | -3/+10 | ||
2019-11-14 | Fix text bounds in `iced_wgpu` on nonintegral DPI | 1 | -1/+1 | ||
2019-11-13 | Draft `Font` type and implement `Text::font` | 1 | -7/+59 | ||
2019-11-13 | Move text logic in `iced_wgpu` to a `text` module | 1 | -0/+106 | ||