Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-01-24 | Add helper functions for alignment to `widget` module | 1 | -6/+5 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -3/+2 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -2/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -3/+3 | ||
2024-03-18 | fix: run `cargo fmt` | 1 | -3/+1 | ||
2024-03-18 | refactor: replace `text(format!(` with `text` macro | 1 | -1/+1 | ||
2024-03-07 | Move `Theme` type to `iced_core` | 1 | -2/+1 | ||
2024-03-04 | Simplify theming for `Text` widget | 1 | -57/+46 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -2/+3 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 1 | -23/+16 | ||
2023-09-20 | Fix `clippy::default_trait_access` | 1 | -1/+1 | ||
2023-03-05 | Rename `iced_native` to `iced_runtime` | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -4/+6 | ||
2023-02-24 | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies | 1 | -0/+0 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -1/+1 | ||
2023-01-27 | Fix: Clippy lint 'uninlined_format_args' | 1 | -1/+1 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -15/+6 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -1/+1 | ||
... and check those in CI as well! | |||||
2022-06-29 | Introduce `StyleSheet` for `Text` widget | 1 | -2/+2 | ||
2022-01-28 | Experimental wgpu WebGL backend support | 1 | -1/+18 | ||
- 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 | Remove `widget` module re-exports in `iced_native` | 1 | -4/+3 | ||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -3/+3 | ||
2021-09-20 | Introduce and use `CrossAlign` enum for `Column` and `Row` | 1 | -3/+3 | ||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -8/+3 | ||
This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!) | |||||
2021-08-13 | Rename `integration` examples | 1 | -0/+0 | ||
2021-03-11 | Add `clipboard` argument to `Application::update` | 1 | -3/+8 | ||
2020-06-11 | Add `step` member to slider widgets | 1 | -15/+24 | ||
Both the native and the web slider now have a member `step` to control the least possible change of the slider's value. It defaults to 1.0 for all sliders and can be adjusted with the step method. | |||||
2020-06-08 | Add on_release message to Slider (#378) | 1 | -1/+1 | ||
* Add on_finish callback to Slider * Fix formatting * Rename Slider's on_finish to on_release, make the message simply an event without data * Satisfy Clone impl requirement on Message in integration test * Only call on_release after dragging a slider | |||||
2020-05-21 | Simplify `integration` example with `Program` | 1 | -40/+37 | ||
2020-03-27 | remove explicit lifetimes in integration example | 1 | -4/+1 | ||
2020-02-09 | Add `integration` example | 1 | -0/+102 | ||
It showcases how to integrate iced in an existing graphical application. |