summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove `iced_web` from `document` worfklowLibravatar Héctor Ramón Jiménez2022-01-311-1/+0
|
* Merge pull request #1096 from pacmancoder/feat/wgpu-webglLibravatar Héctor Ramón2022-01-3190-3901/+768
|\ | | | | Experimental WebGL wgpu backend support
| * Allow `Application::run` to return on native platformsLibravatar Héctor Ramón Jiménez2022-01-311-2/+42
| |
| * Add `index.html` for `todos` and `tour` exampleLibravatar Héctor Ramón Jiménez2022-01-293-0/+25
| | | | | | | | You can use `trunk serve` to easily compile them!
| * Use `MaybeSend` in `perform` and `map` for `Command`Libravatar Héctor Ramón Jiménez2022-01-283-5/+17
| |
| * Implement `time` module for `wasm-bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2022-01-287-21/+61
| |
| * Split `iced_futures` into different `backend` implementationsLibravatar Héctor Ramón Jiménez2022-01-2819-318/+280
| |
| * Introduce `MaybeSend` trait in `iced_futures`Libravatar Héctor Ramón Jiménez2022-01-286-150/+49
| | | | | | | | It allows to clean up all the `trait_aliases` modules!
| * Move `time` module from `iced_native` to `iced_core`Libravatar Héctor Ramón Jiménez2022-01-285-5/+6
| |
| * Enable `instant` only for `wasm32` targetsLibravatar Héctor Ramón Jiménez2022-01-286-6/+19
| | | | | | | | ... and hide the dependency under a `time` module in `iced_native`
| * Use WebGL2 limits for `Compositor` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2022-01-281-1/+8
| |
| * Append `Canvas` to `<body>` when targetting Wasm in `iced_winit`Libravatar Héctor Ramón Jiménez2022-01-282-0/+19
| |
| * Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez2022-01-2835-3475/+69
| |
| * Reduce diffLibravatar Kai Mast2022-01-281-1/+1
| |
| * Always use event_loop.runLibravatar Kai Mast2022-01-281-77/+30
| |
| * Use glow_glyp in opengl_integration exampleLibravatar Kai Mast2022-01-281-1/+1
| |
| * Re-add docs for clipboardLibravatar Kai Mast2022-01-281-1/+2
| |
| * Remove wasm-specific clipboardLibravatar Kai Mast2022-01-282-30/+2
| |
| * Use instant instead of std::instantLibravatar Kai Mast2022-01-282-1/+2
| |
| * Experimental wgpu WebGL backend supportLibravatar Vladyslav Nikonov2022-01-2821-87/+415
|/ | | | | | | | - 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
* Rely on GHCR instead of Docker Hub in `Cross.toml`Libravatar Héctor Ramón Jiménez2022-01-261-2/+2
|
* Fix `audit` workflowLibravatar Héctor Ramón Jiménez2022-01-261-1/+0
| | | | ... since `nix` recently released a `0.22.3`, which is safe by default.
* Merge pull request #1160 from derezzedex/dev/arm-supportLibravatar Héctor Ramón2022-01-2630-280/+1108
|\ | | | | feat: add support to ARM devices (and older hardware)
| * Build `todos` for Raspberry Pis in `build` workflowLibravatar Héctor Ramón Jiménez2022-01-202-5/+31
| |
| * Move files in `docker` directory to `iced-rs/docker` repositoryLibravatar Héctor Ramón Jiménez2022-01-203-79/+0
| |
| * Add `Shader` and `Version`Libravatar Richard2022-01-196-134/+156
| | | | | | | | to simplify and constrain `program::create`
| * Add setting to try OpenGL ES firstLibravatar Richard2022-01-193-4/+34
| |
| * Update documentation for built-in renderersLibravatar Richard2022-01-194-3/+102
| |
| * Export `glow` in `iced_glow`Libravatar Richard2022-01-194-2/+3
| |
| * Export `iced_winit::conversion` in `iced_glutin`Libravatar Richard2022-01-192-5/+6
| |
| * Improve shader version selectionLibravatar Richard2022-01-1917-69/+179
| |
| * Add `env_logger` to `game_of_life`Libravatar Richard2022-01-192-0/+5
| |
| * Log debugging infoLibravatar Richard2022-01-192-0/+9
| |
| * Split `quad::Pipeline` into `core` and `compatibility`Libravatar Richard2022-01-1913-220/+755
| |
| * Use `glutin`, `glow` and `glow_glyph` forksLibravatar Richard2022-01-191-2/+2
| |
| * Add cross compilation targets for `armv7` and `aarch64`Libravatar Richard2022-01-193-0/+69
| |
* | Merge pull request #1213 from iced-rs/fix/phantom-overlayLibravatar Héctor Ramón2022-01-221-2/+4
|\ \ | | | | | | Fix previous `overlay` affecting `cursor_position` during `draw` in `UserInterface`
| * | Fix previous `overlay` affecting `cursor_position` during `draw` in ↵Libravatar Héctor Ramón Jiménez2022-01-221-2/+4
|/ / | | | | | | `UserInterface`
* | Merge pull request #1209 from iced-rs/checkbox-radio-text-colorLibravatar Héctor Ramón2022-01-216-33/+21
|\ \ | | | | | | Remove ambiguous `text_color` attributes for `Checkbox` and `Radio`
| * | Remove ambiguous `text_color` attributes for `Checkbox` and `Radio`Libravatar Héctor Ramón Jiménez2022-01-206-33/+21
| | | | | | | | | | | | Instead, always use a `StyleSheet`.
* | | Merge pull request #1206 from iced-rs/fix/responsive-window-resizeLibravatar Héctor Ramón2022-01-201-1/+5
|\ \ \ | | | | | | | | Invalidate widget tree in `Responsive` after a `window::Event::Resized`
| * | | Invalidate widget tree in `Responsive` after a `window::Event::Resized`Libravatar Héctor Ramón Jiménez2022-01-201-1/+5
| |/ / | | | | | | | | | | | | | | | | | | | | | This is a pessimistic approach! Ideally, we should be able to recreate only the contents of the `Responsive` widget in `Widget::layout`, but given `view` is impure we have to trigger a brand new `view` call. The persistent widget tree should make this easier.
* | | Remove `position` abbreviation in `Component`Libravatar Héctor Ramón Jiménez2022-01-201-2/+5
| | |
* | | component overlay position fixLibravatar cossonleo2022-01-201-6/+8
|/ /
* / Recompute layout of `Responsive` contents when size changesLibravatar Héctor Ramón Jiménez2022-01-201-1/+3
|/
* Write `CNAME` file before publishing in `document` workflowLibravatar Héctor Ramón Jiménez2022-01-191-0/+2
|
* Create worflow to publish latest docs to `iced-rs/docs`Libravatar Héctor Ramón Jiménez2022-01-191-0/+32
|
* Merge pull request #1198 from iced-rs/subscription-helpersLibravatar Héctor Ramón2022-01-1710-137/+615
|\ | | | | `websocket` example and helpers to create custom subscriptions
| * Add worker example to docs of `subscription::unfold`Libravatar Héctor Ramón Jiménez2022-01-171-0/+65
| |
| * Simplify `run` and `unfold` helpers to build a `Subscription`Libravatar Héctor Ramón Jiménez2022-01-172-96/+69
| |