summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Format use declarations in `image::viewer`Libravatar Héctor Ramón Jiménez2020-12-181-4/+4
|
* Merge remote-tracking branch 'tarkah/image-pane' into image-paneLibravatar Héctor Ramón Jiménez2020-12-185-2/+560
|\
| * remove re-export on viewer::StateLibravatar Cory Forsstrom2020-05-273-5/+10
| |
| * update docsLibravatar Cory Forsstrom2020-05-271-1/+1
| |
| * centered image and zoom to cursorLibravatar Cory Forsstrom2020-05-272-96/+204
| |
| * rename to image::ViewerLibravatar Cory Forsstrom2020-05-269-73/+50
| |
| * Rename and add to iced image moduleLibravatar Cory Forsstrom2020-05-267-56/+58
| |
| * Rebase to master and update for api changesLibravatar Cory Forsstrom2020-05-262-43/+20
| |
| * Show idle cursor if image can't be pannedLibravatar Cory Forsstrom2020-05-261-2/+5
| |
| * Add `ImagePane` widgetLibravatar Cory Forsstrom2020-05-267-2/+470
| |
* | Mention birth year in `README`sLibravatar Nils Martel2020-12-172-3/+3
| |
* | Merge pull request #57 from simlay/ios-support-wipLibravatar Héctor Ramón2020-12-1712-50/+181
|\ \ | | | | | | Touch support
| * | Produce logical coordinates for `touch::Event`Libravatar Héctor Ramón Jiménez2020-12-151-3/+12
| | |
| * | Fix text selection with touch events in `TextInput`Libravatar Héctor Ramón Jiménez2020-12-151-2/+5
| | |
| * | Change cursor position on touch eventLibravatar Héctor Ramón Jiménez2020-12-151-2/+5
| | |
| * | Turn `Touch` into a `touch::Event` enumLibravatar Héctor Ramón Jiménez2020-12-159-117/+88
| | |
| * | Merge branch 'ios-support-wip' into feature/touch-supportLibravatar Héctor Ramón Jiménez2020-12-1511-43/+188
|/| |
| * | Remove redundant `scroll_to` in `Scrollable`Libravatar Héctor Ramón Jiménez2020-03-191-14/+0
| | |
| * | Turn `Touch` into a struct and add finger idLibravatar Héctor Ramón Jiménez2020-03-1913-114/+153
| | |
| * | Added initial touch events to support iOSLibravatar Sebastian Imlay2020-03-1813-47/+165
| | |
* | | Merge pull request #658 from hecrj/update-winit-and-glutinLibravatar Héctor Ramón2020-12-153-3/+5
|\ \ \ | | | | | | | | Update `winit` and `glutin`
| * | | Update `winit` and `glutin`Libravatar Héctor Ramón Jiménez2020-12-123-3/+5
|/ / / | | | | | | | | | We avoid a breaking change in `mouse::Button::Other` for the time being.
* | | Merge pull request #637 from hecrj/0.2Libravatar Héctor Ramón2020-11-2626-65/+68
|\ \ \ | | | | | | | | Release `0.2` — Canvas interactivity, overlay support, a renderer alternative, and more!
| * | | Bump versions :tada:Libravatar Héctor Ramón Jiménez2020-11-2617-33/+33
| | | |
| * | | Update example links to point to `0.2` branchLibravatar Héctor Ramón Jiménez2020-11-269-32/+35
|/ / /
* | | Update `game_of_life` captureLibravatar Héctor Ramón Jiménez2020-11-261-2/+2
| | |
* | | Merge pull request #636 from hecrj/improvement/update-ecosystem-and-roadmapLibravatar Héctor Ramón2020-11-2636-339/+108
|\ \ \ | | | | | | | | Update `ECOSYSTEM` and `ROADMAP`
| * | | Add missing metadata to `iced_graphics` subcrateLibravatar Héctor Ramón Jiménez2020-11-261-0/+5
| | | |
| * | | Update `README`s of subcratesLibravatar Héctor Ramón Jiménez2020-11-266-16/+24
| | | |
| * | | Reduce size of foundations graph in `ECOSYSTEM`Libravatar Héctor Ramón Jiménez2020-11-261-1/+1
| | | |
| * | | Update graphs in crate docsLibravatar Héctor Ramón Jiménez2020-11-2614-7/+15
| | | |
| * | | Reduce size of graphs in `README` and `ECOSYSTEM`Libravatar Héctor Ramón Jiménez2020-11-262-7/+19
| | | |
| * | | Update `ROADMAP`Libravatar Héctor Ramón Jiménez2020-11-261-14/+7
| | | |
| * | | Update `ECOSYSTEM`Libravatar Héctor Ramón Jiménez2020-11-2612-280/+43
| | | |
| * | | Update `README`Libravatar Héctor Ramón Jiménez2020-11-262-21/+1
|/ / /
* | | Merge pull request #527 from rubik83/masterLibravatar Héctor Ramón2020-11-262-7/+14
|\ \ \ | | | | | | | | Account for empty ranges in `Slider` and `ProgressBar`
| * | | Account for empty ranges in `Slider` and `ProgressBar`Libravatar Héctor Ramón Jiménez2020-11-262-7/+14
| | | |
| * | | fix slider handle_offset formulaLibravatar rubik832020-11-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | change : let handle_offset = (bounds.width - handle_width) * ((value - range_start) / (range_end - range_start).max(1.0)) to : let handle_offset = (bounds.width - handle_width) * ((value - range_start) / (range_end - range_start).max(f32::EPSILON)).max(0.0).min(1.0)
| * | | fix active_progress_width formulaLibravatar rubik832020-11-261-1/+1
|/ / / | | | | | | | | | | | | | | | change : let active_progress_width = bounds.width * ((value - range_start) / (range_end - range_start).max(1.0)) to : let active_progress_width = bounds.width * ((value - range_start) / (range_end - range_start).max(f32::EPSILON)).max(0.0).min(1.0)
* | | Merge pull request #632 from hecrj/improvement/update-docsLibravatar Héctor Ramón2020-11-26142-1854/+175
|\ \ \ | | | | | | | | Use intra-doc links
| * | | Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-26135-1769/+135
| | | | | | | | | | | | | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
| * | | Rename `keyboard::ModifiersState` to `Modifiers`Libravatar Héctor Ramón Jiménez2020-11-266-31/+22
| | | |
| * | | Fix broken links in API documentationLibravatar Héctor Ramón Jiménez2020-11-265-54/+18
|/ / /
* | | Merge pull request #634 from myfreeweb/graphics-licenseLibravatar Héctor Ramón2020-11-251-0/+1
|\ \ \ | | | | | | | | Add license to iced-graphics' Cargo.toml
| * | | Add license to iced-graphics' Cargo.tomlLibravatar Greg V2020-11-251-0/+1
|/ / /
* | | Merge pull request #605 from ZakisM/text_input_select_all_fixLibravatar Héctor Ramón2020-11-251-14/+16
|\ \ \ | | | | | | | | This PR fixes a bug with select all (CMD + A on MacOS) when using a text_input.
| * | | Track keyboard modifiers in `text_input`Libravatar Héctor Ramón Jiménez2020-11-251-24/+16
| | | |
| * | | This PR fixes a bug with select all (CMD + A on MacOS) when using a text_input.Libravatar Zak2020-11-251-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | Previous behaviour: when selecting all (CMD + A) would delete the current text inside the input and replace the content with just the letter 'a'. Now we check if the logo key (modifier key) has been pressed before checking any other key and save it to the state level. This way we can prevent any text being deleted when using the select all shortcut or text being entered at all when a modifier key is pressed (this behaviour matches other text input behaviour i.e text inputs in the browser etc...).
* | | | Merge pull request #595 from valbendan/masterLibravatar Héctor Ramón2020-11-2512-13/+72
|\ \ \ \ | |/ / / |/| | | upgrade tokio to latest version(v0.3)
| * | | Introduce `tokio_old` featureLibravatar Héctor Ramón Jiménez2020-11-2510-9/+67
| | | | | | | | | | | | | | | | | | | | This feature allows users to rely on the `0.2` version of `tokio` while the async ecosystem upgrades to the latest version.