summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Disable maximize window button if `Settings::resizable` is `false`Libravatar Héctor Ramón Jiménez2023-10-271-0/+6
|
* Use upstream repository for `glyphon` dependencyLibravatar Héctor Ramón Jiménez2023-10-271-1/+1
|
* Merge pull request #2122 from iced-rs/update-wgpuLibravatar Héctor Ramón2023-10-277-14/+28
|\ | | | | Update `wgpu` to `0.18` and `cosmic-text` to `0.10`
| * Remove unnecessary `into_iter` call in `iced_graphics`Libravatar Héctor Ramón Jiménez2023-10-271-5/+4
| |
| * Update `wgpu` to `0.18` and `cosmic-text` to `0.10`Libravatar Héctor Ramón Jiménez2023-10-276-9/+24
|/
* Run `cargo update` before `cargo audit` in `audit` workflowLibravatar Héctor Ramón Jiménez2023-10-221-0/+2
|
* Merge pull request #2000 from ids1024/performLibravatar Héctor Ramón2023-10-192-7/+4
|\ | | | | Fix `Command<T>::perform` to return a `Command<T>`
| * Fix lint in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-10-181-4/+1
| |
| * Fix `Command<T>::perform` to return a `Command<T>`Libravatar Ian Douglas Scott2023-10-181-3/+3
|/ | | | | | | This seems like clearly the correct thing to do here. If the type bound on `Command` isn't specified, it makes no difference, since the generic is inferred in a way that works with either definition. But this is important if `Command<T>` is aliased with a concrete type.
* Fix `cargo nitpick` aliasLibravatar Héctor Ramón Jiménez2023-09-201-0/+1
|
* Centralize `clippy` lints in `.cargo/config.toml`Libravatar Héctor Ramón Jiménez2023-09-2013-81/+16
|
* Simplify `map` call in `iced_wgpu::triangle`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Revert "Chore: Apply clippy map transformations"Libravatar Héctor Ramón Jiménez2023-09-207-10/+15
| | | | This reverts commit c997aad85d7ee6e77085e50e5e599002549d228f.
* Fix `build` workflow in GitHub CILibravatar Héctor Ramón Jiménez2023-09-201-1/+0
|
* Merge pull request #2096 from iced-rs/fix/some-more-lintsLibravatar Héctor Ramón2023-09-2080-257/+291
|\ | | | | Fix some `clippy::pedantic` lints
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| |
| * Fix `clippy::unused_async`Libravatar Héctor Ramón Jiménez2023-09-203-12/+22
| |
| * Fix `clippy::manual_let_else`Libravatar Héctor Ramón Jiménez2023-09-207-24/+15
| |
| * Fix `clippy::filter_map_next`Libravatar Héctor Ramón Jiménez2023-09-202-15/+15
| |
| * Fix `clippy::unreadable_literal`Libravatar Héctor Ramón Jiménez2023-09-203-10/+15
| |
| * Fix `clippy::redundant-closure-for-method-calls`Libravatar Héctor Ramón Jiménez2023-09-203-4/+6
| |
| * Fix `clippy::match-wildcard-for-single-variants`Libravatar Héctor Ramón Jiménez2023-09-207-11/+41
| |
| * Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-2019-28/+30
| |
| * Fix `clippy::trivially-copy-pass-by-ref`Libravatar Héctor Ramón Jiménez2023-09-206-55/+48
| |
| * Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-2046-108/+108
| |
| * Create `cargo lint` aliasLibravatar Héctor Ramón Jiménez2023-09-203-2/+3
|/
* Merge pull request #2092 from nyurik/clippyLibravatar Héctor Ramón2023-09-197-19/+13
|\ | | | | Chore: Apply some minor clippy fixes
| * Chore: Apply some minor clippy fixesLibravatar Yuri Astrakhan2023-09-197-19/+13
| | | | | | | | | | | | * Use `.elapsed()` for duration * Use direct iteration without calling `.iter()` and the like * order fields in the `Text` struct creation as declared
* | Merge pull request #2091 from nyurik/docsLibravatar Héctor Ramón2023-09-196-7/+7
|\ \ | | | | | | Chore: Apply clippy docs keyword quoting
| * | Chore: Apply clippy docs keyword quotingLibravatar Yuri Astrakhan2023-09-196-7/+7
| |/ | | | | | | Add quotes a number of doc strings like `sRGB`
* | Merge pull request #2090 from nyurik/mappingLibravatar Héctor Ramón2023-09-197-15/+10
|\ \ | | | | | | Chore: Apply clippy map transformations
| * | Chore: Apply clippy map transformationsLibravatar Yuri Astrakhan2023-09-197-15/+10
| |/ | | | | | | Convert `.map().unwrap_or()` to `.map_or()` and similar transformations.
* | Merge pull request #2089 from nyurik/inlinefmtLibravatar Héctor Ramón2023-09-1913-30/+25
|\ \ | |/ |/| Chore: Inline format args for ease of reading
| * Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-1913-30/+25
|/ | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
* Merge pull request #2084 from iced-rs/fix/horizontal-scrollbar-widthLibravatar Héctor Ramón2023-09-142-12/+12
|\ | | | | Fix width of horizontal scrollbar in `Scrollable`
| * Fix `height` of vertical scroller in `Scrollbar`Libravatar Héctor Ramón Jiménez2023-09-141-4/+4
| |
| * Fix styling of horizontal scrollbar in `scrollable` exampleLibravatar Héctor Ramón Jiménez2023-09-141-2/+2
| |
| * Fix width of horizontal scrollbar in `Scrollable`Libravatar Héctor Ramón Jiménez2023-09-141-6/+6
|/
* Fix link in `CONTRIBUTING` guideLibravatar Héctor Ramón Jiménez2023-09-111-2/+1
|
* Merge pull request #2078 from Nisatru/fix-combo-boxLibravatar Héctor Ramón2023-09-111-1/+1
|\ | | | | Fix `ComboBox` widget panic on wasm
| * Fix `ComboBox` widget panic on wasmLibravatar Thomas2023-09-101-1/+1
|/
* Fix `ComboBox` widget not displaying selection textLibravatar Héctor Ramón Jiménez2023-09-102-3/+50
|
* Fix unnecessary dereference in `Tooltip`Libravatar Héctor Ramón Jiménez2023-09-101-1/+1
|
* Fix `Tooltip` widget state managementLibravatar Héctor Ramón Jiménez2023-09-101-2/+4
|
* Fix `Widget::layout` implementation of `MouseArea`Libravatar Héctor Ramón Jiménez2023-09-101-1/+3
|
* Merge pull request #2058 from iced-rs/explicit-text-cachingLibravatar Héctor Ramón2023-09-1090-1786/+2692
|\ | | | | Explicit text caching
| * Fix `CHANGELOG`Libravatar Héctor Ramón Jiménez2023-09-101-7/+1
| |
| * Fix (more) broken intradoc linksLibravatar Héctor Ramón Jiménez2023-09-103-5/+5
| | | | | | | | Good thing I just set up CI earlier for this :sweat_smile:
| * Fix broken intradoc link in `widget::keyed` moduleLibravatar Héctor Ramón Jiménez2023-09-101-2/+0
| |
| * Fix Wasm build of `todos` exampleLibravatar Héctor Ramón Jiménez2023-09-101-0/+1
| |