summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #107 from Maldela/backgroundLibravatar Héctor Ramón2019-12-056-20/+26
|\ | | | | Implemented `From<Color` for `Background`
| * Implemented `From<Color` for `Background`Libravatar Malte Veerman2019-12-046-20/+26
|/
* Merge pull request #106 from Gohla/no_cfg_attrLibravatar Héctor Ramón2019-12-043-6/+15
|\ | | | | Use cfg and path attribute instead of cfg_attr for IntelliJ Rust support
| * Use cfg and path attribute instead of cfg_attr for IntelliJ Rust supportLibravatar Gabriel Konat2019-12-043-6/+15
|/
* Merge pull request #90 from hecrj/feature/image-from-bytesLibravatar Héctor Ramón2019-12-0411-51/+479
|\ | | | | Load images from memory and image viewer example
| * Update changelogsLibravatar Héctor Ramón Jiménez2019-12-042-0/+16
| |
| * Update `Image::hash_layout` to hash new `Handle`Libravatar Héctor Ramón Jiménez2019-12-041-1/+7
| |
| * Merge branch 'master' into feature/image-from-bytesLibravatar Héctor Ramón Jiménez2019-12-0424-168/+456
| |\ | |/ |/|
* | Merge pull request #95 from Friz64/scrolling-behaviourLibravatar Héctor Ramón2019-12-043-111/+193
|\ \ | | | | | | Make scrolling behave like you'd expect it to
| * | Correct documentation oversightLibravatar Friz642019-12-031-2/+5
| | |
| * | Unify logic by introducing `scrollable::Scrollbar`Libravatar Héctor Ramón Jiménez2019-12-033-171/+169
| | |
| * | Reset tour start to 0Libravatar Friz642019-12-021-1/+1
| | |
| * | Address suggestionsLibravatar Friz642019-12-025-132/+105
| | |
| * | Support null rendererLibravatar Friz642019-12-021-1/+11
| | |
| * | Move scrolling percentage logic to separate functionLibravatar Friz642019-12-021-10/+23
| | |
| * | Finalize workLibravatar Friz642019-12-023-43/+60
| | |
| * | First implementationLibravatar Friz642019-12-025-51/+119
| | |
* | | Fix `TextInput` inner border radius in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-12-031-1/+1
| | |
* | | 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
|/ / /
| | * Rename `image::Handle::from_bytes` to `from_memory`Libravatar Héctor Ramón Jiménez2019-12-044-203/+236
| | | | | | | | | | | | | | | Also, replace `image` example with a new `pokedex` example using the PokéAPI.
| | * Fix typo in `image::Handle` docsLibravatar Héctor Ramón Jiménez2019-11-301-1/+1
| | |
| | * Implement basic image cache trimming in iced_wgpuLibravatar Héctor Ramón Jiménez2019-11-302-7/+53
| | |
| | * Implement `image` viewer exampleLibravatar Héctor Ramón Jiménez2019-11-305-18/+245
| | |
| | * Allow to load an image from memoryLibravatar Héctor Ramón Jiménez2019-11-295-33/+133
| |/ |/| | | | | | | New `image::Handle` opaque type uniquely identifying some `image::Data`, allowing reliable caching.
* | 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
| |