Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-01-28 | Introduce `LineEnding` to `editor` and fix inconsistencies | 1 | -1/+9 | ||
2025-01-24 | Add helper functions for alignment to `widget` module | 1 | -3/+3 | ||
2024-09-11 | Add `label` method to `Toggler` | 1 | -1/+2 | ||
2024-09-11 | Add disabled state and `on_toggle` handler to `Toggler` | 1 | -5/+2 | ||
Co-authored-by: Your Name here only <krishnsundaram@gmail.com> | |||||
2024-09-10 | Use `key_binding` in `editor` example | 1 | -12/+14 | ||
Fixes #2573. | |||||
2024-09-04 | Add `text::Wrapping` support | 1 | -1/+19 | ||
Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | |||||
2024-08-12 | Focus `text_editor` at start-up in `editor` example | 1 | -8/+11 | ||
2024-07-28 | Simplify `highlight` method for `text_editor` widget | 1 | -13/+8 | ||
2024-07-18 | Flesh out the `markdown` example a bit more | 1 | -1/+1 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -3/+3 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -2/+2 | ||
2024-07-09 | Remove `load` method from `application` and `daemon` | 1 | -22/+17 | ||
If you need to run a `Task` during boot, use `run_with` instead! | |||||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -1/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -13/+13 | ||
2024-05-13 | Ask for explicit `Length` in `center_*` methods | 1 | -1/+1 | ||
2024-05-03 | Introduce `center` widget helper | 1 | -1/+1 | ||
... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result. | |||||
2024-03-17 | Use `Program` API in `editor` example | 1 | -35/+34 | ||
2024-03-08 | Rename `container::box_` to `rounded_box` | 1 | -1/+1 | ||
2024-03-05 | Simplify theming for `Container` widget | 1 | -3/+2 | ||
2024-03-04 | Simplify theming for `Button` widget | 1 | -1/+1 | ||
2024-02-15 | Make `horizontal_space` and `vertical_space` fill by default | 1 | -2/+2 | ||
2024-02-07 | Fix wrapped lines not being considered when measuring `TextEditor` | 1 | -0/+1 | ||
2024-01-16 | Refactor `KeyCode` into `Key` and `Location` | 1 | -2/+2 | ||
2023-10-27 | Write documentation for the new text APIs | 1 | -5/+5 | ||
2023-09-22 | Add `text` helper method for `text_editor::Content` | 1 | -18/+1 | ||
2023-09-20 | Introduce more themes to `iced_highlighter` | 1 | -1/+5 | ||
2023-09-19 | Introduce new `iced_highlighter` subcrate | 1 | -237/+14 | ||
2023-09-19 | Save file on `Cmd+S` in `editor` example | 1 | -1/+14 | ||
2023-09-19 | Simplify `editor` example | 1 | -6/+6 | ||
2023-09-18 | Use `Font::MONOSPACE` in `editor` example | 1 | -1/+1 | ||
2023-09-18 | Remove unnecessary `monospaced` flag in `Font` | 1 | -4/+1 | ||
2023-09-18 | Fix `clippy` lints | 1 | -4/+4 | ||
2023-09-18 | Flesh out the `editor` example a bit more | 1 | -24/+263 | ||
2023-09-18 | Implement theme selector in `editor` example | 1 | -19/+82 | ||
2023-09-17 | Fix unnecessary dereference in `editor` example | 1 | -1/+1 | ||
2023-09-17 | Implement syntax highlighting cache in `editor` example | 1 | -25/+42 | ||
2023-09-17 | Implement basic syntax highlighting with `syntect` in `editor` example | 1 | -1/+167 | ||
2023-09-16 | Implement `Copy` and `Paste` actions for `text::Editor` | 1 | -1/+1 | ||
2023-09-13 | Use `Theme::Dark` in `editor` example | 1 | -1/+5 | ||
2023-09-12 | Draft `Editor` API and `TextEditor` widget | 1 | -0/+49 | ||