Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #60 from hecrj/fix/required-width-height | 2019-11-18 | 13 | -10/+78 | |
|\ | | | | | Make `width` and `height` in `Widget` required methods | ||||
| * | Make `width` and `height` required methods | 2019-11-16 | 13 | -10/+78 | |
|/ | |||||
* | Archive `todos` binary before building `deb` pkg | 2019-11-15 | 1 | -4/+4 | |
| | |||||
* | Polish `Build` workflow in all platforms | 2019-11-15 | 1 | -8/+19 | |
| | | | | | | - Add `.desktop` file to `.deb` package - Statically link CRT on Windows - Increase macOS deployment target | ||||
* | Remove `--locked` from `Build` workflow | 2019-11-15 | 1 | -4/+4 | |
| | |||||
* | Improve `Build` workflow to generate `.deb` pkg | 2019-11-15 | 1 | -22/+57 | |
| | |||||
* | Fix `linux-latest` in `Build` workflow | 2019-11-15 | 1 | -1/+1 | |
| | |||||
* | Use different artifact name per platform | 2019-11-15 | 1 | -5/+11 | |
| | |||||
* | Fix `echo` in `Build` workflow on Windows | 2019-11-14 | 1 | -2/+3 | |
| | |||||
* | Add `Build` workflow to generate `todos` binaries | 2019-11-14 | 1 | -0/+35 | |
| | |||||
* | Rename `Integration` workflow to `Test` | 2019-11-14 | 1 | -3/+2 | |
| | |||||
* | Remove `Install libinput` step from CI workflow | 2019-11-14 | 1 | -5/+0 | |
| | |||||
* | Merge pull request #56 from hecrj/example/filter-todos | 2019-11-14 | 5 | -36/+172 | |
|\ | | | | | Draw checkmark icon and filter todos | ||||
| * | Draw proper checkmark for `Checkbox` in `iced_wgpu` | 2019-11-14 | 4 | -12/+20 | |
| | | |||||
| * | Add filter controls to `todos` example :tada: | 2019-11-14 | 1 | -23/+135 | |
| | | |||||
| * | Fix text bounds in `iced_wgpu` on nonintegral DPI | 2019-11-14 | 2 | -2/+18 | |
| | | |||||
* | | Merge pull request #55 from hecrj/example/edit-todos | 2019-11-14 | 9 | -40/+221 | |
|\| | | | | | Edit and delete todos | ||||
| * | Remove argument from `text_input::State::focused` | 2019-11-13 | 2 | -3/+5 | |
| | | |||||
| * | Implement task edition/deletion in `todos` example | 2019-11-13 | 2 | -16/+162 | |
| | | |||||
| * | Implement `text_input::State::focused` | 2019-11-13 | 2 | -0/+19 | |
| | | |||||
| * | Loosen `layout::Limits` for `Container` children | 2019-11-13 | 1 | -1/+1 | |
| | | |||||
| * | Fix `Widget::width` implementation of `Checkbox` | 2019-11-13 | 1 | -1/+5 | |
| | | |||||
| * | Remove default styling of `Button` | 2019-11-13 | 3 | -22/+32 | |
| | | | | | | | | | | - A background will only show if explicitly set. - `iced_wgpu` won't apply a `min_width` of 100 units anymore. | ||||
* | | Merge pull request #54 from hecrj/feature/external-fonts | 2019-11-14 | 12 | -100/+214 | |
|\| | | | | | Custom font support | ||||
| * | Draft `Font` type and implement `Text::font` | 2019-11-13 | 10 | -31/+96 | |
| | | |||||
| * | Move text logic in `iced_wgpu` to a `text` module | 2019-11-13 | 6 | -82/+131 | |
| | | |||||
* | | Merge pull request #52 from hecrj/custom-layout-engine | 2019-11-14 | 53 | -759/+1271 | |
|\| | | | | | Custom layout engine | ||||
| * | Load default font only in measurement cache | 2019-11-11 | 1 | -6/+8 | |
| | | |||||
| * | Fix doc comments and remove `Align` from `tour` | 2019-11-11 | 3 | -11/+20 | |
| | | |||||
| * | Split text measurements cache from rendering cache | 2019-11-11 | 9 | -24/+53 | |
| | | | | | | | | | | This speeds up layouting in the most common scenario considerably! :tada: | ||||
| * | Remove `padding` from `Container` for now | 2019-11-11 | 5 | -23/+13 | |
| | | |||||
| * | Implement `Container` widget | 2019-11-11 | 25 | -205/+310 | |
| | | | | | | | | Remove `align_self` and `justify_content` methods | ||||
| * | Fix integer overflow in `flex::resolve` | 2019-11-11 | 1 | -1/+2 | |
| | | |||||
| * | Draft custom layout engine based on `druid` | 2019-11-11 | 38 | -247/+972 | |
| | | |||||
| * | Draft new layout API | 2019-11-10 | 30 | -596/+247 | |
|/ | |||||
* | Merge pull request #49 from hecrj/feature/control-window-title | 2019-11-09 | 5 | -18/+64 | |
|\ | | | | | Allow applications to control the window title | ||||
| * | Allow applications to control the window title | 2019-11-09 | 5 | -18/+64 | |
|/ | | | | `iced_winit` will change the window title dynamically at runtime! | ||||
* | Merge pull request #47 from hecrj/improvement/text-performance | 2019-11-08 | 1 | -2/+3 | |
|\ | | | | | Improve text rendering performance in some scenarios | ||||
| * | Increase initial size of text cache in `iced_wgpu` | 2019-11-07 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | This reduces the amount of cache updates in general when text changes. The new cache should take 4MB of VRAM. I think this is reasonable for a modern GUI toolkit. In any case, we should be able to reduce this value in the future. | ||||
| * | Align text position to pixel grid in `iced_wgpu` | 2019-11-07 | 1 | -2/+2 | |
| | | | | | | | | | | This avoids re-rasterizing glyphs and cache reuploads when the HiDPI factor is nonintegral. | ||||
* | | Merge pull request #45 from memoryruins/smol-changes | 2019-11-08 | 2 | -9/+4 | |
|\ \ | | | | | | | Minor clean-up | ||||
| * | | use `String::clone` in todo example | 2019-11-07 | 1 | -1/+1 | |
| | | | |||||
| * | | minor changes to text_input's use of iterators | 2019-11-07 | 1 | -8/+3 | |
| | | | |||||
* | | | Merge pull request #46 from memoryruins/from-array | 2019-11-07 | 8 | -139/+61 | |
|\ \ \ | | | | | | | | | impl From<Array> for Color | ||||
| * | | | use Color's `From` impl in more places | 2019-11-07 | 7 | -139/+49 | |
| | | | | |||||
| * | | | impl From<Array> for Color | 2019-11-07 | 1 | -0/+12 | |
| |/ / | |||||
* | | | Merge pull request #44 from hecrj/improvement/update-wgpu | 2019-11-07 | 1 | -2/+2 | |
|\ \ \ | |/ / |/| / | |/ | Update `wgpu` to `0.4` in `iced_wgpu` | ||||
| * | Update `wgpu` to `0.4` in `iced_wgpu` | 2019-11-07 | 1 | -2/+2 | |
|/ | |||||
* | Merge pull request #43 from hecrj/fix/clip-primitive-overflow | 2019-11-07 | 1 | -18/+25 | |
|\ | | | | | Fix integer overflow with nested clip primitives | ||||
| * | Floor layer coords to avoid excessive clipping | 2019-11-07 | 1 | -2/+2 | |
| | |