Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix lints for Rust 1.80 | 2024-07-26 | 1 | -3/+3 | |
| | |||||
* | Introduce `subscription::Event` | 2024-06-11 | 1 | -15/+4 | |
| | | | | ... and remove `PlatformSpecific` from `Event` | ||||
* | Introduce `window::Id` to `Event` subscriptions | 2024-06-10 | 1 | -3/+13 | |
| | | | | And remove `window::Id` from `Event` altogether. | ||||
* | Use `rustc-hash` for most of our `HashMap` and `HashSet` instances | 2024-04-01 | 1 | -5/+4 | |
| | |||||
* | Chore: Inline format args for ease of reading | 2023-09-19 | 1 | -2/+1 | |
| | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read. | ||||
* | Fix majority of unresolved documentation links | 2023-09-09 | 1 | -0/+3 | |
| | |||||
* | Remove generic `Hasher` and `Event` from `subscription::Recipe` | 2023-03-05 | 1 | -33/+18 | |
| | |||||
* | Fix further `clippy` lints | 2022-07-09 | 1 | -0/+10 | |
| | | | | ... and explicitly annotate crates as well. | ||||
* | Address Clippy lints | 2022-07-09 | 1 | -1/+1 | |
| | |||||
* | Fix `Subscription` cancelation when never awaiting | 2022-05-27 | 1 | -10/+23 | |
| | | | | | | | | `StreamExt::forward` will keep polling a ready `Stream` in a loop. If the `Stream` is always ready, the `poll` method of `Forward` effectively blocks (see https://github.com/rust-lang/futures-rs/issues/2552). The fix consists in manually implementing a simpler version of `Forward`. | ||||
* | Introduce `MaybeSend` trait in `iced_futures` | 2022-01-28 | 1 | -47/+7 | |
| | | | | It allows to clean up all the `trait_aliases` modules! | ||||
* | Experimental wgpu WebGL backend support | 2022-01-28 | 1 | -6/+46 | |
| | | | | | | | | - 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 | ||||
* | Log event subscription error as a warning | 2021-02-23 | 1 | -1/+1 | |
| | |||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -6/+2 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Fix broken link in `Tracker::broadcast` docs | 2020-04-02 | 1 | -1/+1 | |
| | |||||
* | Fix missing link in `Tracker::broadcast` docs | 2020-04-02 | 1 | -0/+2 | |
| | |||||
* | Make `subscription::Recipe` cross-platform | 2020-03-26 | 1 | -5/+5 | |
| | | | | By removing the `Send` requirement when targetting Wasm | ||||
* | Support event subscriptions in `iced_web` | 2020-02-04 | 1 | -4/+3 | |
| | | | | Also improves the overall web runtime, avoiding nested update loops. | ||||
* | Write documentation for `iced_futures` | 2020-01-20 | 1 | -0/+36 | |
| | |||||
* | Create `iced_futures` and wire everything up | 2020-01-19 | 1 | -0/+112 | |