Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump all versions :tada: | 2020-04-02 | 15 | -30/+43 | |
| | |||||
* | Fix a couple of links in documentation | 2020-04-02 | 2 | -3/+2 | |
| | |||||
* | Update `CHANGELOG` | 2020-04-02 | 1 | -1/+54 | |
| | |||||
* | Merge pull request #252 from hecrj/improvement/documentation | 2020-04-02 | 34 | -245/+281 | |
|\ | | | | | Update and improve documentation | ||||
| * | Fix `window::Renderer` link in `iced_winit` docs | 2020-04-02 | 1 | -2/+2 | |
| | | |||||
| * | Fix broken link in `Tracker::broadcast` docs | 2020-04-02 | 1 | -1/+1 | |
| | | |||||
| * | Fix missing link in `Command` documentation | 2020-04-02 | 1 | -0/+1 | |
| | | |||||
| * | Remove subcrates `CHANGELOG` | 2020-04-02 | 5 | -104/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | At this stage, it is important to allow the library to change rapidly. Because of this, keeping a log of changes can be counter-productive. We do not want pin down design decisions by writing detailed changelogs (sunk cost fallacy). Once the library and its different parts start becoming more stable and mature, we will reintroduce changelogs accordingly. For now, we will keep a main `CHANGELOG` file just for the `iced` crate. | ||||
| * | Write documentation for the `debug` feature | 2020-04-02 | 2 | -0/+6 | |
| | | |||||
| * | Add example to `pane_grid` module documentation | 2020-04-02 | 2 | -0/+14 | |
| | | |||||
| * | Fix typo in `text_input::Renderer::draw` docs | 2020-04-02 | 1 | -1/+1 | |
| | | |||||
| * | Add missing link to `conversion::fullscreen` | 2020-04-02 | 1 | -1/+2 | |
| | | |||||
| * | Update `iced_wgpu` root documentation | 2020-04-02 | 3 | -3/+4 | |
| | | |||||
| * | Update `iced_web` build documentation | 2020-04-02 | 2 | -2/+4 | |
| | | |||||
| * | Add examples to `subscription::Recipe` docs | 2020-04-02 | 1 | -0/+12 | |
| | | |||||
| * | Add examples to `Canvas` documentation | 2020-04-02 | 1 | -2/+15 | |
| | | |||||
| * | Add example to `iced_native::UserInterface` | 2020-04-02 | 1 | -0/+7 | |
| | | |||||
| * | Add examples to `iced_native::Widget` | 2020-04-02 | 1 | -0/+20 | |
| | | |||||
| * | Fix missing link in `Tracker::broadcast` docs | 2020-04-02 | 1 | -0/+2 | |
| | | |||||
| * | Fix `Size::new` documentation | 2020-04-02 | 1 | -1/+1 | |
| | | |||||
| * | Improve `Point::ORIGIN` documentation | 2020-04-02 | 1 | -1/+1 | |
| | | |||||
| * | Improve docs for `Sandbox` and `Application` | 2020-04-02 | 6 | -108/+123 | |
| | | |||||
| * | Fix minor documentation issues | 2020-04-02 | 5 | -8/+14 | |
| | | |||||
| * | Add example for `Canvas` widget | 2020-04-02 | 1 | -2/+39 | |
| | | |||||
| * | Fix `iced_native` version in `iced_winit` | 2020-04-02 | 1 | -1/+1 | |
| | | |||||
| * | Update `iced_wgpu` information in repository docs | 2020-04-02 | 2 | -4/+5 | |
| | | |||||
| * | Clarify return policy of `Application::run` | 2020-04-02 | 3 | -8/+8 | |
| | | |||||
| * | Move `Space` to `widget` module | 2020-04-02 | 2 | -2/+2 | |
| | | |||||
| * | Fix missing link in `Executor::enter` doc comment | 2020-04-02 | 1 | -0/+2 | |
|/ | |||||
* | Merge pull request #251 from Plecra/clock-scaling | 2020-04-02 | 1 | -2/+2 | |
|\ | | | | | Rework scaling in clock example | ||||
| * | Add `0` suffix to float literals for consistency | 2020-04-02 | 1 | -2/+2 | |
| | | |||||
| * | Scale the clock hands to the same size as the face | 2020-04-01 | 1 | -2/+2 | |
|/ | |||||
* | Merge pull request #249 from michael-swan/master | 2020-03-31 | 1 | -0/+11 | |
|\ | | | | | Add Ctrl+Backspace text field behaviour | ||||
| * | Add Ctrl+Backspace text field behaviour | 2020-03-30 | 1 | -0/+11 | |
| | | |||||
* | | Merge pull request #246 from hecrj/feature/application-flags | 2020-03-31 | 14 | -63/+119 | |
|\ \ | | | | | | | Application flags | ||||
| * | | Implement `enter` for `executor::Default` in Wasm | 2020-03-30 | 1 | -1/+9 | |
| | | | |||||
| * | | Call `Runtime::enter` properly in `iced_web` | 2020-03-30 | 1 | -3/+8 | |
| | | | |||||
| * | | Allow passing external state to `Application::new` | 2020-03-30 | 13 | -60/+103 | |
| |/ | |||||
* | | Merge pull request #248 from hecrj/feature/container-padding | 2020-03-31 | 7 | -22/+47 | |
|\ \ | | | | | | | Implement `padding` support for `Container` | ||||
| * \ | Merge branch 'master' into feature/container-padding | 2020-03-31 | 5 | -37/+82 | |
| |\ \ | |/ / |/| | | |||||
* | | | Merge pull request #247 from hecrj/feature/svg-from-memory | 2020-03-31 | 5 | -37/+82 | |
|\ \ \ | |_|/ |/| | | Implement `svg::Handle::from_memory` | ||||
| * | | Genericize `From` implementation for `image::Handle` | 2020-03-31 | 1 | -9/+6 | |
| | | | |||||
| * | | Implement `svg::Handle::from_memory` | 2020-03-31 | 4 | -28/+76 | |
|/ / | | | | | | | Useful if you already have your SVG data in memory. | ||||
| * | Implement `padding` support for `Container` | 2020-03-31 | 7 | -22/+47 | |
|/ | |||||
* | Merge pull request #245 from tirz/refactor-bound_lifetime | 2020-03-30 | 16 | -50/+69 | |
|\ | | | | | refactor: remove not mandatories 'static lifetimes | ||||
| * | Hash type ids in `Widget::hash_layout` impls | 2020-03-30 | 15 | -32/+51 | |
| | | |||||
| * | refactor: remove not mandatory static lifetime | 2020-03-30 | 13 | -32/+32 | |
|/ | |||||
* | Merge pull request #242 from kaimast/master | 2020-03-29 | 10 | -19/+15 | |
|\ | | | | | Some more code cleanups. | ||||
| * | Remove redundant closure in `Application::run` | 2020-03-29 | 1 | -1/+1 | |
| | | |||||
| * | Remove unnecessary `clone` call in `Transformation` | 2020-03-29 | 1 | -1/+1 | |
| | |