Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #150 from hecrj/refactor/move-renderer-traits | 2020-01-10 | 10 | -29/+27 | |
|\ | | | | | Move `Debugger` and `Windowed` traits | ||||
| * | Move `Debugger` and `Windowed` to a better location | 2020-01-10 | 10 | -29/+27 | |
| | | | | | | | | | | We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`. | ||||
* | | Merge pull request #152 from hecrj/fix/flex-layout-alignment | 2020-01-10 | 2 | -1/+9 | |
|\ \ | | | | | | | Fix flex layout cross-alignment when not filled | ||||
| * | | Fix flex layout cross-alignment when not filled | 2020-01-10 | 2 | -1/+9 | |
| | | | |||||
* | | | Merge pull request #149 from hecrj/feature/window-resized-event | 2020-01-10 | 5 | -5/+31 | |
|\ \ \ | |/ / |/| / | |/ | Window resized event | ||||
| * | Produce `window::Event::Resized` in `iced_winit` | 2020-01-10 | 1 | -4/+7 | |
| | | |||||
| * | Add `window::Event::Resized` to `iced_native` | 2020-01-10 | 4 | -1/+24 | |
|/ | |||||
* | Merge pull request #146 from hecrj/feature/custom-styling | 2020-01-09 | 81 | -595/+2288 | |
|\ | | | | | Custom styling | ||||
| * | Write missing docs and reenable deny statements | 2020-01-09 | 18 | -13/+71 | |
| | | |||||
| * | Remove leftover `debug_color` in `styling` example | 2020-01-09 | 1 | -8/+1 | |
| | | |||||
| * | Merge branch 'master' into feature/custom-styling | 2020-01-09 | 18 | -51/+48 | |
| |\ | |/ |/| | |||||
* | | Merge pull request #139 from hecrj/feature/shrink-by-default | 2020-01-09 | 17 | -53/+41 | |
|\ \ | | | | | | | Make `Row`, `Column`, `Text`, and `Checkbox` shrink by default | ||||
| * \ | Merge branch 'master' into feature/shrink-by-default | 2020-01-09 | 31 | -16/+1041 | |
| |\ \ | |/ / |/| | | |||||
* | | | Add a note about cross-compatibility in `master` | 2020-01-08 | 1 | -1/+5 | |
| | | | | | | | | | | | | Fixes #145 | ||||
| * | | Make `Row`, `Column`, and `Checkbox` shrink by default | 2019-12-30 | 17 | -54/+42 | |
| | | | |||||
| | * | Fix drawing empty `Quad` on empty `ProgressBar` | 2020-01-08 | 1 | -13/+17 | |
| | | | |||||
| | * | Allow `Checkbox` style to change based on its state | 2020-01-08 | 3 | -13/+20 | |
| | | | |||||
| | * | Color borders of `Checkbox` and `Radio` in `styling` example | 2020-01-07 | 1 | -6/+6 | |
| | | | |||||
| | * | Remove `Mul` implementation for `Vector` | 2020-01-07 | 1 | -11/+0 | |
| | | | |||||
| | * | Add `Scrollable` to `styling` example | 2020-01-07 | 1 | -30/+51 | |
| | | | |||||
| | * | Always show scroller if scrollbar is visible | 2020-01-07 | 1 | -35/+38 | |
| | | | |||||
| | * | Implement styling for `Checkbox` | 2020-01-07 | 9 | -46/+180 | |
| | | | |||||
| | * | Implement styling for `Radio` | 2020-01-07 | 9 | -38/+145 | |
| | | | |||||
| | * | Implement styling for `ProgressBar` | 2020-01-07 | 10 | -67/+151 | |
| | | | |||||
| | * | Use constants for colors in `styling` example | 2020-01-07 | 2 | -23/+39 | |
| | | | |||||
| | * | Implement styling for `Slider` | 2020-01-07 | 9 | -47/+266 | |
| | | | |||||
| | * | Implement styling for `Scrollable` | 2020-01-06 | 9 | -37/+191 | |
| | | | |||||
| | * | Use default styles in `styling` example | 2020-01-06 | 1 | -44/+4 | |
| | | | |||||
| | * | Implement `Default` for `Theme` in `styling` example | 2020-01-06 | 1 | -6/+8 | |
| | | | |||||
| | * | Draft `styling` example | 2020-01-06 | 5 | -6/+298 | |
| | | | |||||
| | * | Merge branch 'master' into feature/custom-styling | 2020-01-05 | 20 | -9/+818 | |
| | |\ | |_|/ |/| | | |||||
* | | | Merge pull request #141 from Songtronix/songtronix/progressbar-widget | 2020-01-04 | 11 | -6/+308 | |
|\ \ \ | | | | | | | | | Progress bar widget | ||||
| * | | | Expose `ProgressBar` in `iced` crate | 2020-01-04 | 2 | -3/+2 | |
| | | | | |||||
| * | | | Hash `height` of `ProgressBar` in `hash_layout` | 2020-01-03 | 1 | -0/+1 | |
| | | | | |||||
| * | | | Move `DEFAULT_HEIGHT` constant to `Renderer` | 2020-01-03 | 2 | -19/+22 | |
| | | | | | | | | | | | | | | | | Also fixes some minor documentation issues. | ||||
| * | | | add(web): support password field | 2020-01-03 | 1 | -0/+14 | |
| | | | | |||||
| * | | | change(widget): make height adjustable at widget level | 2020-01-02 | 5 | -59/+61 | |
| | | | | | | | | | | | | | | | | addtionally rename Progressbar to ProgressBar | ||||
| * | | | change(widget): custom coloring for progressbar | 2020-01-02 | 3 | -15/+64 | |
| | | | | |||||
| * | | | add(widget): primitive progressbar widget | 2020-01-02 | 9 | -5/+239 | |
| | | | | |||||
* | | | | Merge pull request #140 from artursapek/artur/canvas | 2020-01-03 | 9 | -2/+512 | |
|\ \ \ \ | |/ / / |/| | | | Mesh2D primitive for rendering arbitrary geometry in `iced_wgpu` | ||||
| * | | | Remove empty `geometry` file in `iced_native` | 2020-01-02 | 1 | -0/+0 | |
| | | | | |||||
| * | | | Rename `Geometry2D` to `Mesh2D` and move it to `iced_wgpu` | 2020-01-02 | 12 | -198/+184 | |
| | | | | |||||
| * | | | Implement Geometry2D primitive | 2020-01-01 | 13 | -4/+528 | |
|/ / / | |||||
| | * | Fix styling in `button::Renderer` implementation | 2020-01-05 | 1 | -27/+37 | |
| | | | |||||
| | * | Implement `Default` for `text_input::Style` | 2020-01-05 | 1 | -0/+11 | |
| | | | |||||
| | * | Implement `Default` for `container::Style` | 2020-01-05 | 2 | -1/+13 | |
| | | | |||||
| | * | Add border and shadow styling to `Button` | 2020-01-05 | 8 | -32/+58 | |
| | | | |||||
| | * | Add border styling to `Container` | 2020-01-05 | 2 | -18/+23 | |
| | | | |||||
| | * | Remove `background` from `Settings` | 2020-01-05 | 5 | -34/+9 | |
| | | | |||||
| | * | Draft basic styling for `TextInput` | 2020-01-01 | 10 | -36/+143 | |
| | | |