summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2498 from iced-rs/iced-widgetLibravatar Héctor Ramón2024-07-117-30/+56
|\ | | | | Add `iced` widget helper to display the iced logo :comet:
| * Add `iced` widget helper to display the iced logo :comet:Libravatar Héctor Ramón Jiménez2024-07-117-30/+56
| |
* | Merge pull request #2497 from iced-rs/stream-try-channelLibravatar Héctor Ramón2024-07-111-0/+21
|\ \ | |/ |/| Introduce `stream::try_channel` helper
| * Introduce `stream::try_channel` helperLibravatar Héctor Ramón Jiménez2024-07-111-0/+21
|/
* Merge pull request #2496 from iced-rs/abortable-tasksLibravatar Héctor Ramón2024-07-102-19/+62
|\ | | | | Abortable `Task`
| * Introduce `Task::abortable` :tada:Libravatar Héctor Ramón Jiménez2024-07-102-1/+44
| |
| * Move docs of `future` and `stream` in `Task`Libravatar Héctor Ramón Jiménez2024-07-101-18/+18
|/
* Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez2024-07-0910-197/+70
| | | | | If you need to run a `Task` during boot, use `run_with` instead!
* Implement `Default` for `combo_box::State`Libravatar Héctor Ramón Jiménez2024-07-091-0/+9
|
* Merge pull request #2321 from PgBiel/select-allLibravatar Héctor Ramón2024-07-083-0/+28
|\ | | | | Add "Select All" functionality on Ctrl+A to TextEditor
| * add SelectAll to TextEditorLibravatar PgBiel2024-07-083-0/+28
|/
* Allow future in `stream::channel` to returnLibravatar Héctor Ramón Jiménez2024-07-081-3/+2
|
* Merge pull request #2493 from iced-rs/hide-subscription-internalsLibravatar Héctor Ramón2024-07-0513-249/+271
|\ | | | | Hide `Subscription` internals
| * Expose `from_recipe` and `into_recipes` in `advanced::subscription`Libravatar Héctor Ramón Jiménez2024-07-051-1/+1
| |
| * Fix `wasm_bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2024-07-051-1/+1
| |
| * Hide `Subscription` internalsLibravatar Héctor Ramón Jiménez2024-07-0511-247/+269
|/ | | | .. and introduce `stream::channel` helper
* Merge pull request #2492 from iced-rs/hide-internal-task-constructorsLibravatar Héctor Ramón2024-07-0511-134/+138
|\ | | | | Hide internal `Task` constructors
| * Hide internal `Task` constructorsLibravatar Héctor Ramón Jiménez2024-07-0511-134/+138
|/
* Simplify `subscription::channel` exampleLibravatar Héctor Ramón Jiménez2024-07-021-29/+14
|
* Merge pull request #2485 from vladh/add-quad-border-docLibravatar Héctor Ramón2024-06-301-1/+1
|\ | | | | doc: clarify Quad border alignment
| * doc: clarify Quad border alignmentLibravatar Vlad-Stefan Harbuz2024-06-291-1/+1
| |
* | Merge pull request #2487 from vladh/fix-reconcile-typoLibravatar Héctor Ramón2024-06-302-4/+4
|\ \ | | | | | | doc: fix "Reconciles" typo
| * | doc: fix "Reconciles" typoLibravatar Vlad-Stefan Harbuz2024-06-302-4/+4
|/ /
* | Fix `window::open_events` subscribing to closed eventsLibravatar Héctor Ramón Jiménez2024-06-281-1/+1
| | | | | | | | Fixes #2481.
* | Remove unnecessary `Send` bound in `runtime::Action`Libravatar Héctor Ramón Jiménez2024-06-211-1/+1
| | | | | | | | This may fix compilation errors in older versions of Rust.
* | Merge pull request #2475 from vladh/impl-copy-fill-strokeLibravatar Héctor Ramón2024-06-214-4/+4
|\ \ | |/ |/| Implement Copy on Fill and Stroke
| * Implement Copy on Fill and StrokeLibravatar Vlad-Stefan Harbuz2024-06-214-4/+4
| |
* | Fix fonts not being loaded at startupLibravatar Héctor Ramón Jiménez2024-06-211-1/+9
|/
* Fix `application` sometimes exiting at startupLibravatar Héctor Ramón Jiménez2024-06-201-0/+4
|
* Inline documentation for `application` and `daemon` functionsLibravatar Héctor Ramón Jiménez2024-06-201-2/+7
|
* Merge pull request #2470 from ryankopf/masterLibravatar Héctor Ramón2024-06-201-0/+51
|\ | | | | feat: Add methods for window settings in Application
| * Add `window` method to `Application`Libravatar Héctor Ramón Jiménez2024-06-201-1/+8
| |
| * feat: Add methods for window settings in ApplicationLibravatar ryankopf2024-06-201-0/+44
|/ | | | This commit adds new methods to the `Application` struct for setting various window settings such as resizable, decorations, position, and level. These methods allow for more customization and control over the appearance and behavior of the application window.
* Merge pull request #2469 from iced-rs/unify-shell-runtimesLibravatar Héctor Ramón2024-06-2057-2714/+1531
|\ | | | | `Daemon` API and Shell Runtime Unification
| * Remove `window::Id::MAIN` constantLibravatar Héctor Ramón Jiménez2024-06-206-11/+10
| |
| * Add `get_latest` and `get_oldest` tasks in `window`Libravatar Héctor Ramón Jiménez2024-06-202-36/+64
| |
| * Introduce `and_then` methods for fallible `Task`sLibravatar Héctor Ramón Jiménez2024-06-201-0/+33
| |
| * Fix initialization race conditions in WebAssemblyLibravatar Héctor Ramón Jiménez2024-06-191-58/+42
| | | | | | | | WebGL is still broken, but oh well... Time to move on.
| * Fix WebAssembly compilationLibravatar Héctor Ramón Jiménez2024-06-191-7/+105
| | | | | | | | Rendering seems to still not work, however.
| * Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-1954-2626/+1301
| |
* | Implement `std::fmt::Display` for `iced::Radians` (#2446)Libravatar SolidStateDj2024-06-181-0/+7
|/ | | | | | | | | | | * Implement `std::fmt::Display` for Radians * Add ` rad` to the end of all displayed strings. Co-authored-by: Héctor Ramón <hector0193@gmail.com> --------- Co-authored-by: Héctor Ramón <hector0193@gmail.com>
* Merge pull request #2330 from Gigas002/viewer_content_fitLibravatar Héctor Ramón2024-06-181-76/+80
|\ | | | | Implement content_fit for viewer widget
| * Make viewer widget inner naming and syntax closer to image widgetLibravatar gigas0022024-05-101-25/+27
| |
| * Run cargo fmtLibravatar gigas0022024-05-081-2/+2
| |
| * Merge branch 'iced-rs-master' into viewer_content_fitLibravatar gigas0022024-05-08120-2102/+4077
| |\
| | * Merge branch 'master' of https://github.com/iced-rs/iced into iced-rs-masterLibravatar gigas0022024-05-08120-2102/+4077
| |/|
| * | Merge branch 'iced-rs:master' into viewer_content_fitLibravatar Gigas0022024-04-16124-4473/+5685
| |\ \
| * | | Minor renaming refactoringLibravatar gigas0022024-03-291-30/+38
| | | |
| * | | Merge branch 'iced-rs:master' into viewer_content_fitLibravatar Gigas0022024-03-292-4/+11
| |\ \ \
| * \ \ \ Merge branch 'master' into viewer_content_fitLibravatar Gigas0022024-03-2787-2494/+3221
| |\ \ \ \