summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #94 from hatoo/improve-settingLibravatar Héctor Ramón2019-12-036-11/+63
|\ | | | | Improve window setting
| * Refactor window creation in `iced_winit`Libravatar Héctor Ramón Jiménez2019-12-032-27/+15
| |
| * Add `decorations` to `settings::Window`Libravatar Héctor Ramón Jiménez2019-12-031-4/+12
| |
| * Add tailing newline to winit/Cargo.tomlLibravatar hatoo2019-12-021-1/+1
| |
| * Modify src/settings.rs to keep original APILibravatar hatoo2019-12-021-16/+4
| |
| * Remove unneeded dependency "winapi" from icedLibravatar hatoo2019-12-021-3/+0
| |
| * Remove platform-specific logic from icedLibravatar hatoo2019-12-013-47/+2
| | | | | | | | Make Window.platform_specific use iced_winit::settings::PlatformSpecific
| * Add platform specific settingsLibravatar hatoo2019-11-309-0/+106
| |
| * Add `decorations` to SettingLibravatar hatoo2019-11-303-0/+10
| |
* | Merge pull request #99 from hecrj/fix/web-render-after-commandLibravatar Héctor Ramón2019-12-022-13/+31
|\ \ | | | | | | Schedule render after `Command` futures finish in `iced_web`
| * | Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2019-12-011-0/+2
| | |
| * | Schedule render after `Command` futures finishLibravatar Héctor Ramón Jiménez2019-12-011-13/+29
| | |
* | | Merge pull request #101 from Shootertrex/fix/image-widget-hashingLibravatar Héctor Ramón2019-12-021-0/+1
|\ \ \ | | | | | | | | Added path to image hash so it updates when path changes
| * | | Added path to image hash so it updates when path changesLibravatar Nicholas Pienta2019-12-011-0/+1
|/ / /
* | | Use `PowerPreference::Default` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-12-011-1/+1
| | |
* | | Add `repr(C)` to GPU typesLibravatar Héctor Ramón Jiménez2019-12-012-0/+4
|/ /
* | Merge pull request #84 from hecrj/fix/event-processingLibravatar Héctor Ramón2019-12-011-6/+12
|\ \ | | | | | | Process events only when necessary
| * | Process events only when necessaryLibravatar Héctor Ramón Jiménez2019-11-281-6/+12
| |/ | | | | | | | | Additionally, this also fixes a bug where the old size was being used for layouting after a resize.
* | Merge pull request #74 from hecrj/fix/font-load-panicLibravatar Héctor Ramón2019-12-015-25/+120
|\ \ | | | | | | Fallback to embedded font when system font is unsupported
| * | Stop loading a mono font just for the debug viewLibravatar Héctor Ramón Jiménez2019-11-262-16/+4
| | |
| * | Fallback to embedded font when system font failsLibravatar Héctor Ramón Jiménez2019-11-264-13/+120
| | |
* | | Merge pull request #92 from nvzqz/type-conversionsLibravatar Héctor Ramón2019-11-303-0/+30
|\ \ \ | |_|/ |/| | Add `From` impls for `Length`, `Point`, and `Size`
| * | Add `From` impls for `Length`, `Point`, and `Size`Libravatar Nikolai Vazquez2019-11-293-0/+30
|/ /
* / Add simple counter exampleLibravatar Héctor Ramón Jiménez2019-11-261-0/+56
|/
* Merge pull request #68 from hecrj/feature/application-settingsLibravatar Héctor Ramón2019-11-259-19/+98
|\ | | | | Allow `Application` configuration with `Settings`
| * Allow `Application` configuration with `Settings`Libravatar Héctor Ramón Jiménez2019-11-259-19/+98
| |
* | Add `CHANGELOG` to subcratesLibravatar Héctor Ramón Jiménez2019-11-258-19/+77
| |
* | Update debug view GIF in `README`Libravatar Héctor Ramón Jiménez2019-11-252-2/+2
|/
* Update `CONTRIBUTING`Libravatar Héctor Ramón Jiménez2019-11-251-2/+3
|
* Add missing link to `ROADMAP`Libravatar Héctor Ramón Jiménez2019-11-241-0/+2
|
* Add missing link to `CONTRIBUTING`Libravatar Héctor Ramón Jiménez2019-11-241-0/+1
|
* Improve `CONTRIBUTING`Libravatar Héctor Ramón Jiménez2019-11-242-2/+15
|
* Link to iced.rs in main `README`Libravatar Héctor Ramón Jiménez2019-11-241-2/+3
|
* Merge pull request #66 from hecrj/feature/new-web-tourLibravatar Héctor Ramón2019-11-2420-88/+937
|\ | | | | Make `tour` work with `iced_web` again
| * Update document title properly in `iced_web`Libravatar Héctor Ramón Jiménez2019-11-241-0/+15
| |
| * Spawn `Command` futures in `iced_web`Libravatar Héctor Ramón Jiménez2019-11-246-18/+36
| |
| * Add warning on debugger tour section in webLibravatar Héctor Ramón Jiménez2019-11-241-5/+13
| |
| * Style `Button` min-width in `iced_web`Libravatar Héctor Ramón Jiménez2019-11-241-10/+5
| |
| * Make `tour` work with `iced_web` again :tada:Libravatar Héctor Ramón Jiménez2019-11-2317-70/+883
| | | | | | | | | | - Implements `TextInput`, `Scrollable`, and `Container` - Adds basic style generation
* | Use explicit `Uniforms` type in image pipelineLibravatar Héctor Ramón Jiménez2019-11-241-14/+24
| |
* | Fix copy image instance size in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-11-241-1/+1
| |
* | Use latest `wgpu_glyph`Libravatar Héctor Ramón Jiménez2019-11-241-1/+1
| |
* | Merge pull request #67 from hecrj/fix/private-use-charactersLibravatar Héctor Ramón2019-11-241-1/+14
|\ \ | | | | | | Stop emitting private use characters on macOS
| * | Stop emitting private use characters on macOSLibravatar Héctor Ramón Jiménez2019-11-241-1/+14
| | |
* | | Increase scrolling speed in `Scrollable`Libravatar Héctor Ramón Jiménez2019-11-241-1/+1
|/ /
* | Fix rounding error when scrollingLibravatar Héctor Ramón Jiménez2019-11-241-8/+7
| |
* | Avoid panic when image load fails in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-11-241-63/+71
| |
* | Avoid unnecessary panic in `todos`Libravatar Héctor Ramón Jiménez2019-11-241-4/+5
| |
* | Merge pull request #65 from hecrj/improvement/docsLibravatar Héctor Ramón2019-11-2488-2159/+3949
|\ \ | | | | | | Documentation
| * | Display widget images in documentationLibravatar Héctor Ramón Jiménez2019-11-244-2/+6
| | |