summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update examples `README`Libravatar Héctor Ramón Jiménez2020-01-201-6/+84
|
* Add `README` for `todos` exampleLibravatar Héctor Ramón Jiménez2020-01-201-0/+20
|
* Add `README` for `styling` exampleLibravatar Héctor Ramón Jiménez2020-01-201-0/+15
|
* Add `README` for `pokedex` exampleLibravatar Héctor Ramón Jiménez2020-01-201-0/+17
|
* Add `README` for `tour` exampleLibravatar Héctor Ramón Jiménez2020-01-204-32/+30
|
* Package examples and remove `dev-dependencies`Libravatar Héctor Ramón Jiménez2020-01-2030-78/+193
|
* Implement `WasmBindgen` executor and reorganizeLibravatar Héctor Ramón Jiménez2020-01-2011-110/+176
|
* Add `Application::Executor` associated typeLibravatar Héctor Ramón Jiménez2020-01-2029-69/+192
|
* Make `thread-pool` optional in `iced_futures`Libravatar Héctor Ramón Jiménez2020-01-193-2/+10
|
* Rename `Receiver` to `Sender` in `Runtime`Libravatar Héctor Ramón Jiménez2020-01-191-12/+11
|
* Create `iced_futures` and wire everything upLibravatar Héctor Ramón Jiménez2020-01-1923-195/+196
|
* Implement `Runtime` and `Executor` in `iced_core`Libravatar Héctor Ramón Jiménez2020-01-195-4/+97
| | | | | They can be leveraged by shells to easily execute commands and track subscriptions.
* Implement `subscription::Tracker` in `iced_core`Libravatar Héctor Ramón Jiménez2020-01-197-8/+131
|
* Merge pull request #162 from hecrj/feature/window-file-eventsLibravatar Héctor Ramón2020-01-166-18/+50
|\ | | | | Window file events
| * Produce new window file events in `iced_winit`Libravatar Héctor Ramón Jiménez2020-01-162-13/+24
| |
| * Add file events to `iced_native::window::Event`Libravatar Héctor Ramón Jiménez2020-01-166-8/+29
| |
* | Merge pull request #161 from hecrj/feature/window-modeLibravatar Héctor Ramón2020-01-1610-35/+127
|\ \ | |/ |/| Window modes
| * Expose `window::Mode` in `iced`Libravatar Héctor Ramón Jiménez2020-01-1611-42/+81
| | | | | | | | | | Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side.
| * Add `Application::mode` to `iced_winit`Libravatar Héctor Ramón Jiménez2020-01-162-2/+44
| |
| * Create `window::Mode` in `iced_native`Libravatar Héctor Ramón Jiménez2020-01-162-0/+11
| |
* | Take `IntoIterator` instead of `Iterator`Libravatar Héctor Ramón Jiménez2020-01-163-4/+8
|/
* Update `ROADMAP`Libravatar Héctor Ramón Jiménez2020-01-151-18/+4
|
* Merge pull request #155 from ejmahler/remove-cloneLibravatar Héctor Ramón2020-01-1310-26/+44
|\ | | | | Remove Clone bound on Application::Message
| * Remove `Message: Clone` bound in `Sandbox`Libravatar Héctor Ramón Jiménez2020-01-131-1/+1
| |
| * Remove `Message: Clone` bound in some web widgetsLibravatar Héctor Ramón Jiménez2020-01-135-11/+21
| |
| * Remove `Clone` bound for `Element::map`Libravatar Héctor Ramón Jiménez2020-01-132-8/+6
| |
| * Additional clone removals for wasmLibravatar Elliott Mahler2020-01-122-5/+15
| |
| * Remove Clone bound on Application::MessageLibravatar Elliott Mahler2020-01-121-1/+1
|/
* Merge pull request #144 from hatoo/paint-exampleLibravatar Héctor Ramón2020-01-112-0/+367
|\ | | | | Add MS paint example
| * Add instructions to `bezier_tool` exampleLibravatar Héctor Ramón Jiménez2020-01-111-7/+36
| |
| * Fix `bezier_tool` exampleLibravatar Héctor Ramón Jiménez2020-01-111-4/+3
| |
| * Merge branch 'master' into paint-exampleLibravatar Héctor Ramón Jiménez2020-01-1193-652/+2371
| |\
| * | Improve state guarantees in `bezier_tool`Libravatar Héctor Ramón Jiménez2020-01-111-57/+84
| | |
| * | Rename filenameLibravatar hatoo2020-01-081-0/+0
| | |
| * | Change to bezier toolLibravatar hatoo2020-01-081-63/+103
| | |
| * | Remove hash_layoutLibravatar hatoo2020-01-081-5/+1
| | |
| * | Add paint exampleLibravatar hatoo2020-01-062-0/+276
| | |
* | | Merge pull request #151 from hecrj/feature/build-with-dimensionsLibravatar Héctor Ramón2020-01-104-45/+65
|\ \ \ | | | | | | | | Make layout bounds explicit in `UserInterface`
| * | | Make layout bounds explicit in `UserInterface`Libravatar Héctor Ramón Jiménez2020-01-104-45/+65
| | | |
* | | | Merge pull request #150 from hecrj/refactor/move-renderer-traitsLibravatar Héctor Ramón2020-01-1010-29/+27
|\| | | | |_|/ |/| | Move `Debugger` and `Windowed` traits
| * | Move `Debugger` and `Windowed` to a better locationLibravatar Héctor Ramón Jiménez2020-01-1010-29/+27
| | | | | | | | | | | | | | | We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`.
* | | Merge pull request #152 from hecrj/fix/flex-layout-alignmentLibravatar Héctor Ramón2020-01-102-1/+9
|\ \ \ | | | | | | | | Fix flex layout cross-alignment when not filled
| * | | Fix flex layout cross-alignment when not filledLibravatar Héctor Ramón Jiménez2020-01-102-1/+9
| | | |
* | | | Merge pull request #149 from hecrj/feature/window-resized-eventLibravatar Héctor Ramón2020-01-105-5/+31
|\ \ \ \ | |/ / / |/| / / | |/ / Window resized event
| * | Produce `window::Event::Resized` in `iced_winit`Libravatar Héctor Ramón Jiménez2020-01-101-4/+7
| | |
| * | Add `window::Event::Resized` to `iced_native`Libravatar Héctor Ramón Jiménez2020-01-104-1/+24
|/ /
* | Merge pull request #146 from hecrj/feature/custom-stylingLibravatar Héctor Ramón2020-01-0981-595/+2288
|\ \ | | | | | | Custom styling
| * | Write missing docs and reenable deny statementsLibravatar Héctor Ramón Jiménez2020-01-0918-13/+71
| | |
| * | Remove leftover `debug_color` in `styling` exampleLibravatar Héctor Ramón Jiménez2020-01-091-8/+1
| | |
| * | Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2020-01-0918-51/+48
| |\ \ | |/ / |/| |