summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added text color and font options for native radio and checkbox (#831)Libravatar zdevwu2021-05-172-8/+32
| | | | | | | | | | | | | | | | | * text color and font options to radio * code formatting * code formatting * code formatting * Added text_color for native checkbox * Removed clone as color has Copy * Fix code formatting with `cargo fmt` Co-authored-by: Héctor Ramón <hector@lich.io>
* Merge pull request #876 from Cupnfish/masterLibravatar Héctor Ramón2021-05-171-0/+2
|\ | | | | Add a primary backend that can be set
| * update docLibravatar Downtime2021-05-141-0/+1
| |
| * Add a primary backend that can be setLibravatar Downtime2021-05-131-0/+1
| | | | | | | | Add a primary backend that can be set
* | Merge pull request #875 from ZakisM/optimize_svg_algorithmLibravatar Héctor Ramón2021-05-171-17/+5
|\ \ | | | | | | This commit optimizes the algorithm used to convert rgba pixels into bgra pixels for SVG's.
| * | This commit optimizes the function used to converg rgba pixels into bgra pixels.Libravatar Zak2021-05-111-17/+5
| | |
* | | Merge pull request #877 from RDambrosio016/patch-1Libravatar Héctor Ramón2021-05-141-1/+1
|\ \ \ | |/ / |/| | Change examples to point to 0.3 examples, not 0.2
| * | Change examples to point to 0.3 examples, not 0.2Libravatar Riccardo D'Ambrosio2021-05-131-1/+1
|/ /
* | Merge pull request #868 from hecrj/wgpu-compatible-surfaceLibravatar Héctor Ramón2021-05-084-8/+25
|\ \ | | | | | | Provide `compatible_surface` in `iced_wgpu::Compositor`
| * | Provide `compatible_surface` in `iced_wgpu::Compositor`Libravatar Héctor Ramón2021-05-054-8/+25
|/ /
* | Merge pull request #851 from hecrj/fix/scrollbar-under-contentLibravatar Héctor Ramón2021-05-043-15/+38
|\ \ | | | | | | Fix `Scrollable` scrollbar being rendered behind contents
| * | Fix `Scrollable` scrollbar being rendered behind contentsLibravatar Héctor Ramón2021-05-033-15/+38
|/ / | | | | | | ... by issuing a new clip layer just for the scrollbar itself.
* | Merge pull request #825 from tarkah/feat/window-visibilityLibravatar Héctor Ramón2021-04-116-2/+20
|\ \ | | | | | | add window visibility
| * | use Mode::Hidden insteadLibravatar Cory Forsstrom2021-04-098-35/+19
| | |
| * | add to glutinLibravatar Cory Forsstrom2021-04-081-0/+1
| | |
| * | add window visibilityLibravatar Cory Forsstrom2021-04-084-1/+34
|/ /
* | Merge pull request #815 from taiki-e/docsLibravatar Héctor Ramón2021-04-061-1/+1
|\ \ | | | | | | Enable qr_code feature on docs.rs
| * | Enable qr_code feature on docs.rsLibravatar Taiki Endo2021-04-061-1/+1
|/ /
* | Merge pull request #810 from Cupnfish/masterLibravatar Héctor Ramón2021-04-011-1/+1
|\| | | | | fix typo
| * Update frame.rsLibravatar Downtime2021-04-011-1/+1
|/
* Fix `iced_wgpu` link in `CHANGELOG`Libravatar Héctor Ramón Jiménez2021-03-311-1/+1
|
* Merge pull request #806 from hecrj/release/0.3.0Libravatar Héctor Ramón2021-03-3119-46/+107
|\ | | | | Release 0.3 — Touch support, clipboard write access, image viewer, tooltips, and more!
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2021-03-3119-45/+49
| |
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2021-03-311-1/+58
|/
* Merge pull request #804 from hecrj/feature/graceful-exitLibravatar Héctor Ramón2021-03-318-19/+103
|\ | | | | Graceful exiting for `Application`
| * Showcase graceful exiting in `events` exampleLibravatar Héctor Ramón Jiménez2021-03-301-10/+37
| |
| * Add support for graceful exits in `Application`Libravatar Héctor Ramón Jiménez2021-03-305-9/+57
| | | | | | | | | | - `Settings` now contains an `exit_on_close_request` field - `Application` has a new `should_exit` method
| * Add `CloseRequested` variant to `window::Event`Libravatar Héctor Ramón Jiménez2021-03-302-0/+9
|/
* Merge pull request #796 from hecrj/fix/redraw-empty-windowLibravatar Héctor Ramón2021-03-261-1/+6
|\ | | | | Skip redrawing if window has no surface
| * Skip redrawing if window has no surfaceLibravatar Héctor Ramón Jiménez2021-03-261-1/+6
|/
* Merge pull request #789 from Cupnfish/masterLibravatar Héctor Ramón2021-03-254-2/+52
|\ | | | | Add WGPU_BACKEND environment variable
| * Introduce `internal_backend` to `iced_wgpu::Settings`Libravatar Héctor Ramón Jiménez2021-03-254-41/+52
| |
| * Support choosing `wgpu` backend using env varLibravatar Downtime2021-03-251-1/+40
|/
* Convert `ScaleFactorChanged` into `Resized` events in `iced_glutin`Libravatar Héctor Ramón Jiménez2021-03-241-1/+16
| | | | ... instead of just dropping them when calling `to_static`.
* Convert `ScaleFactorChanged` into `Resized` events in `iced_winit`Libravatar Héctor Ramón Jiménez2021-03-241-1/+16
| | | | ... instead of just dropping them when calling `to_static`.
* Overwrite `overlay` method in Widget implementation for Button (#764)Libravatar Nicolas Levy2021-03-141-0/+8
| | | | | | | * Overwrite `overlay` method in Widget implementation for Button * Overwrite `overlay` method in Widget implementation for Button (cargo fmt) * Fix button overlay
* Merge pull request #773 from hecrj/feature/clipboard-access-in-updateLibravatar Héctor Ramón2021-03-1221-58/+170
|\ | | | | Clipboard access in `Application::update`
| * Implement stub `Clipboard` in `iced_web`Libravatar Héctor Ramón Jiménez2021-03-113-4/+38
| | | | | | | | | | We need to figure out browser permissions and use of unstable `web-sys` APIs
| * Expose `read` and `write` methods in `iced_winit::Clipboard` directlyLibravatar Héctor Ramón Jiménez2021-03-111-4/+14
| |
| * Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-1118-50/+118
|/
* Merge pull request #770 from hecrj/feature/clipboard-writeLibravatar Héctor Ramón2021-03-1032-129/+227
|\ | | | | Write clipboard support and `TextInput` copy and cut behavior
| * Implement copy and cut behavior for `TextInput`Libravatar Héctor Ramón Jiménez2021-03-101-0/+40
| |
| * Make `Clipboard` argument in `Widget` trait mutableLibravatar Héctor Ramón Jiménez2021-03-1031-129/+175
| |
| * Introduce `write` method to `Clipboard` traitLibravatar Héctor Ramón Jiménez2021-03-102-0/+10
| |
| * Update `window_clipboard` to `0.2`Libravatar Héctor Ramón Jiménez2021-03-106-9/+11
| |
* | Merge pull request #771 from hecrj/fix/tooltip-layeringLibravatar Héctor Ramón2021-03-106-45/+89
|\ \ | |/ |/| Reposition `Tooltip` inside `viewport` bounds
| * Reposition `Tooltip` inside `viewport` boundsLibravatar Héctor Ramón Jiménez2021-02-271-37/+60
| | | | | | | | ... only when out of bounds.
| * Fix `viewport` argument in `PaneGrid` draw callsLibravatar Héctor Ramón Jiménez2021-02-275-8/+29
| |
* | Call `hash_layout` for `controls` in `pane_grid::TitleBar`Libravatar Héctor Ramón Jiménez2021-03-091-0/+4
| |
* | Merge pull request #760 from TriedAngle/masterLibravatar Héctor Ramón2021-03-052-6/+4
|\ \ | |/ |/| Update: rand in solar_system example