Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert `WindowEvent` from a reference in `iced_winit` | 2020-03-27 | 3 | -14/+14 | |
| | |||||
* | Merge pull request #236 from hecrj/improvement/svg-handle-from | 2020-03-26 | 1 | -8/+5 | |
|\ | | | | | Genericize `From` implementation for `svg::Handle` | ||||
| * | Genericize `From` implementation for `svg::Handle` | 2020-03-26 | 1 | -8/+5 | |
| | | |||||
* | | Merge pull request #234 from hecrj/improvement/subscription-send-requirement | 2020-03-26 | 7 | -235/+149 | |
|\ \ | |/ |/| | Improve compatibility of `iced_futures` | ||||
| * | Make `subscription::Recipe` cross-platform | 2020-03-26 | 3 | -26/+22 | |
| | | | | | | | | By removing the `Send` requirement when targetting Wasm | ||||
| * | Simplify `iced_futures::Command` implementation | 2020-03-26 | 3 | -209/+99 | |
| | | |||||
| * | Add `BoxFutures` and `BoxStream` to `iced_futures` | 2020-03-26 | 1 | -0/+28 | |
|/ | |||||
* | Merge pull request #202 from FabianLars/master | 2020-03-25 | 10 | -286/+788 | |
|\ | | | | | Text Selection for text_input widget | ||||
| * | Remove unnecessary borrows in `Editor` | 2020-03-25 | 1 | -11/+10 | |
| | | |||||
| * | Fix edge cases when inserting text in `Editor` | 2020-03-25 | 1 | -2/+2 | |
| | | |||||
| * | Implement `Renderer::find_cursor_position` | 2020-03-25 | 3 | -50/+61 | |
| | | |||||
| * | Change selection color in `styling` example | 2020-03-24 | 1 | -1/+1 | |
| | | |||||
| * | Rename `is_pressed` to `is_dragging` in `text_input` | 2020-03-24 | 1 | -5/+5 | |
| | | |||||
| * | Improve docs of `text_input::State::cursor` | 2020-03-24 | 1 | -1/+4 | |
| | | |||||
| * | Remove commented code in `text_input` | 2020-03-24 | 1 | -9/+0 | |
| | | |||||
| * | Write documentation for `text_input::Cursor` | 2020-03-24 | 2 | -45/+65 | |
| | | |||||
| * | Fix edge case in `Editor::backspace` | 2020-03-24 | 1 | -4/+3 | |
| | | |||||
| * | Create `text_input::Editor` to hold editing logic | 2020-03-24 | 2 | -55/+103 | |
| | | |||||
| * | Move `Value` to its own module | 2020-03-24 | 2 | -139/+142 | |
| | | |||||
| * | Improve `text_input::cursor` API | 2020-03-24 | 4 | -135/+164 | |
| | | |||||
| * | Avoid panic in `Click::is_consecutive` | 2020-03-24 | 1 | -1/+4 | |
| | | |||||
| * | Merge branch 'master' into feature/text-selection | 2020-03-24 | 90 | -548/+3633 | |
| |\ | |/ |/| | |||||
* | | Fix `Recipe::hash` in `download_progress` example | 2020-03-24 | 1 | -0/+2 | |
| | | |||||
* | | Merge pull request #232 from Songtronix/songtronix/add-download-example | 2020-03-23 | 6 | -0/+284 | |
|\ \ | | | | | | | Add example for download with progress tracking | ||||
| * | | Fix retry button on `download_progress` example | 2020-03-23 | 1 | -2/+4 | |
| | | | |||||
| * | | Update `README` of examples | 2020-03-23 | 2 | -4/+7 | |
| | | | |||||
| * | | Handle errors in `download_progress` example | 2020-03-23 | 2 | -11/+43 | |
| | | | |||||
| * | | Rename `downloader` module to `download` | 2020-03-23 | 2 | -9/+9 | |
| | | | |||||
| * | | Improve `download_progress` example | 2020-03-23 | 3 | -114/+117 | |
| | | | | | | | | | | | | | | | - Use `reqwest` with `Response::chunk` to notify progress. - Turn example state into an enum | ||||
| * | | Add example for download with progress tracking | 2020-03-23 | 5 | -0/+244 | |
|/ / | |||||
* | | Merge pull request #229 from hecrj/improvement/ci-check-format | 2020-03-22 | 2 | -2/+12 | |
|\ \ | | | | | | | Add workflow to check format in CI | ||||
| * | | Rename job in format workflow to `all` | 2020-03-21 | 1 | -1/+1 | |
| | | | |||||
| * | | Add workflow to check format in CI | 2020-03-21 | 2 | -2/+12 | |
|/ / | |||||
* | | Merge pull request #228 from maaku/fix-cargo-fmt | 2020-03-21 | 2 | -2/+2 | |
|\ \ | | | | | | | Remove excess whitespace from end of line to comply with `cargo fmt`. | ||||
| * | | Remove excess whitespace from end of line to comply with `cargo fmt`. | 2020-03-20 | 2 | -2/+2 | |
|/ / | |||||
* | | Merge pull request #224 from hecrj/feature/panes-widget | 2020-03-20 | 36 | -35/+1915 | |
|\ \ | | | | | | | Pane grid widget | ||||
| * | | Fix links in `pane_grid` documentation | 2020-03-20 | 2 | -2/+4 | |
| | | | |||||
| * | | Rename `Internal::idle_pane` to `active_pane` | 2020-03-20 | 2 | -6/+3 | |
| | | | |||||
| * | | Check cursor is in-bounds before resizing panes | 2020-03-20 | 1 | -39/+44 | |
| | | | |||||
| * | | Remove redundant check in `ModifiersState::matches` | 2020-03-20 | 1 | -4/+4 | |
| | | | |||||
| * | | Use `f32::hypot` in `Point::distance` | 2020-03-20 | 1 | -1/+1 | |
| | | | |||||
| * | | Fix minor documentation issues in `pane_grid` | 2020-03-19 | 2 | -2/+10 | |
| | | | |||||
| * | | Create `PaneGrid` alias in `iced_wgpu` | 2020-03-19 | 3 | -3/+24 | |
| | | | |||||
| * | | Write documentation for `pane_grid` | 2020-03-19 | 7 | -11/+273 | |
| | | | |||||
| * | | Rename `PaneGrid::modifiers` to `pressed_modifiers` | 2020-03-19 | 1 | -5/+5 | |
| | | | |||||
| * | | Check only for partial match of modifier keys | 2020-03-18 | 2 | -4/+21 | |
| | | | |||||
| * | | Update `README` of examples | 2020-03-18 | 2 | -5/+16 | |
| | | | |||||
| * | | Improve styling of `pane_grid` example | 2020-03-18 | 1 | -18/+41 | |
| | | | |||||
| * | | Add some styling to `pane_grid` buttons | 2020-03-18 | 1 | -4/+47 | |
| | | | |||||
| * | | Make cursor unavailable when dragging panes | 2020-03-18 | 1 | -1/+9 | |
| | | |