index
:
iced
master
A cross-platform GUI library for Rust, inspired by Elm
cel
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
...
|
*
Revert automatic horizontal scroll in `scrollable`
Héctor Ramón Jiménez
2025-02-01
1
-7
/
+1
|
*
Propagate mouse cursor movements in `stack`
Héctor Ramón Jiménez
2025-02-01
1
-1
/
+6
|
*
Fix event capturing in `rich_text`
Héctor Ramón Jiménez
2025-02-01
1
-2
/
+4
|
*
Fix `rich_text` reactive rendering when hovering links
Héctor Ramón Jiménez
2025-02-01
1
-61
/
+52
|
*
Split code blocks into multiple `rich_text` lines
Héctor Ramón Jiménez
2025-02-01
1
-10
/
+12
|
*
Cull out of bounds `rich_text` during `draw`
Héctor Ramón Jiménez
2025-02-01
1
-0
/
+4
|
*
Fix `viewport` when using nested `scrollable`s
Héctor Ramón Jiménez
2025-02-01
1
-6
/
+6
|
*
Discard `markdown::Highlighter` if language changes
Héctor Ramón Jiménez
2025-02-01
1
-0
/
+5
|
*
Add `new` constructor for `markdown::Content`
Héctor Ramón Jiménez
2025-01-31
2
-6
/
+6
|
*
Replace `println` with `log` calls in `markdown` module
Héctor Ramón Jiménez
2025-01-31
3
-3
/
+9
|
*
Implement `markdown` incremental code highlighting
Héctor Ramón Jiménez
2025-01-31
3
-104
/
+264
|
*
Draft incremental `markdown` parsing
Héctor Ramón Jiménez
2025-01-31
3
-29
/
+168
|
*
Add `min_height` and `max_height` to `text_editor`
Héctor Ramón Jiménez
2025-01-30
1
-4
/
+26
|
*
Use `Into<Id>` for `scrollable::Id` arguments
Héctor Ramón Jiménez
2025-01-30
1
-8
/
+19
|
*
Avoid capturing mouse press when `text_editor` is unfocused
Héctor Ramón Jiménez
2025-01-30
1
-2
/
+4
|
*
Use `Into<Id>` for `container::Id` arguments
Héctor Ramón Jiménez
2025-01-30
1
-3
/
+11
|
*
Let `markdown::view` be `Shrink` when no code blocks exist
Héctor Ramón Jiménez
2025-01-30
1
-1
/
+1
|
*
Make `spacing` configurable in `markdown::Settings`
Héctor Ramón Jiménez
2025-01-30
1
-8
/
+27
|
*
Fix code block merging with previous spans in `markdown` widget
Héctor Ramón Jiménez
2025-01-30
1
-1
/
+10
|
/
*
Update dependencies in `Cargo.lock`
Héctor Ramón Jiménez
2025-01-29
1
-71
/
+104
*
Merge pull request #2764 from iced-rs/wasm/enable-animation
Héctor
2025-01-29
3
-12
/
+5
|
\
|
*
Enable `animation` module for Wasm target
Héctor Ramón Jiménez
2025-01-29
3
-12
/
+5
|
/
*
Merge pull request #2758 from airstrike/mouse-transformation
Héctor
2025-01-28
2
-2
/
+32
|
\
|
*
Move cursor `Transformation` to `mouse::cursor` module
Andy Terra
2025-01-28
2
-15
/
+16
|
*
Implement `Mul<Transformation>` for `mouse::Click`
Andy Terra
2025-01-27
1
-1
/
+16
|
*
Implement `Mul<Transformation>` for `mouse::Cursor`
Andy Terra
2025-01-27
1
-0
/
+14
*
|
Merge pull request #2761 from rhysd/replace-directories-next
Héctor
2025-01-28
3
-40
/
+66
|
\
\
|
*
|
Replace unmaintained `directories-next` crate with `directories` crate
rhysd
2025-01-29
3
-40
/
+66
*
|
|
Merge pull request #2760 from rhysd/remove-winapi
Héctor
2025-01-28
3
-5
/
+0
|
\
\
\
|
|
/
/
|
/
|
|
|
*
|
Remove unused `winapi` crate from dependencies
rhysd
2025-01-28
3
-5
/
+0
|
/
/
*
|
Merge pull request #2759 from iced-rs/fix/respect-editor-line-endings
Héctor
2025-01-28
5
-60
/
+93
|
\
\
|
|
/
|
/
|
|
*
Introduce `LineEnding` to `editor` and fix inconsistencies
Héctor Ramón Jiménez
2025-01-28
5
-60
/
+93
|
/
*
Merge pull request #2757 from iced-rs/feature/animation-api
Héctor
2025-01-28
12
-121
/
+883
|
\
|
*
Display grid placeholder when loading `gallery` example
Héctor Ramón Jiménez
2025-01-28
2
-6
/
+23
|
*
Add `repeat`, `repeat_forever`, and `auto_reverse` to `Animation`
Héctor Ramón Jiménez
2025-01-28
1
-0
/
+20
|
*
Rename `Animation::in_progress` to `is_animating`
Héctor Ramón Jiménez
2025-01-28
2
-27
/
+30
|
*
Remove unnecessary `endpoint` function in `gallery` example
Héctor Ramón Jiménez
2025-01-27
1
-7
/
+1
|
*
Change `period` to `Week` in `gallery` example
Héctor Ramón Jiménez
2025-01-27
1
-1
/
+1
|
*
Make `animation` module only available in native
Héctor Ramón Jiménez
2025-01-27
2
-4
/
+11
|
*
Fix broken intra-doc link in `animation`
Héctor Ramón Jiménez
2025-01-27
1
-0
/
+2
|
*
Implement AI `gallery` example :tada:
Héctor Ramón Jiménez
2025-01-27
8
-121
/
+714
|
*
Implement `Animation::value`
Héctor Ramón Jiménez
2025-01-27
1
-0
/
+5
|
*
Draft basic `Animation` API in `iced_core`
Héctor Ramón Jiménez
2025-01-27
6
-3
/
+124
|
/
*
Merge pull request #2749 from rhysd/const-from-rgb8
Héctor
2025-01-27
6
-93
/
+28
|
\
|
*
Use `color!` macro in `Palette` definitions
Héctor Ramón Jiménez
2025-01-27
1
-9
/
+9
|
*
Make all `Color` constructors `const` :tada:
Héctor Ramón Jiménez
2025-01-27
3
-44
/
+15
|
*
Bump MSRV to `1.82`
Héctor Ramón Jiménez
2025-01-27
2
-2
/
+2
|
*
Make `Color::from_rgb8` and `Color::from_rgba8` const
rhysd
2025-01-25
2
-50
/
+14
*
|
Merge pull request #2755 from iced-rs/feature/image-scale
Héctor
2025-01-27
1
-2
/
+15
|
\
\
|
*
|
Implement `scale` support for `image` widget
Héctor Ramón Jiménez
2025-01-27
1
-2
/
+15
|
/
/
[prev]
[next]