Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #200 from clarkmoody/color-enhancements | 2020-05-04 | 8 | -5/+621 | |
|\ | | | | | Color Enhancements | ||||
| * | Improve minor documentation details in `Color` | 2020-05-04 | 1 | -10/+16 | |
| | | |||||
| * | Use only `iced` dependency for `color_palette` | 2020-05-04 | 2 | -6/+3 | |
| | | | | | | | | `Point` and `Size` are now properly re-exported. | ||||
| * | Add screenshot to `README` of `color_palette` | 2020-05-04 | 1 | -1/+7 | |
| | | |||||
| * | Add screenshot of `color_palette` example | 2020-05-04 | 2 | -1/+1 | |
| | | |||||
| * | Mention `color_palette` in examples `README` | 2020-05-04 | 1 | -0/+1 | |
| | | |||||
| * | Reuse triangle path with transforms in `color_palette` | 2020-05-01 | 1 | -43/+28 | |
| | | |||||
| * | Use `Path::rectangle` directly in `color_palette` | 2020-05-01 | 1 | -6/+3 | |
| | | |||||
| * | Move application implementation in `color_palette` | 2020-05-01 | 1 | -206/+206 | |
| | | |||||
| * | Introduce `Theme` type in `color_palette` example | 2020-05-01 | 1 | -103/+88 | |
| | | |||||
| * | Improve `generate_theme` in `color_palette` | 2020-05-01 | 1 | -27/+15 | |
| | | |||||
| * | Remove `update_component` in `color_palette` | 2020-05-01 | 1 | -92/+4 | |
| | | | | | | | | We can use `ColorSpace::new` instead | ||||
| * | Abstract into ColorPicker and ColorSpace trait | 2020-04-27 | 1 | -312/+323 | |
| | | | | | | | | | | | | | | Each color type implements ColorSpace to define its own representation and update methods. View sliders are implemented on the ColorPicker struct. | ||||
| * | Use Path::rectangle and Size for drawing swatches | 2020-04-24 | 1 | -42/+21 | |
| | | |||||
| * | Replace text input fields for simple text | 2020-04-24 | 1 | -75/+20 | |
| | | |||||
| * | Do not re-export Palette from iced_core | 2020-04-24 | 3 | -7/+2 | |
| | | |||||
| * | Hex label text alignment | 2020-04-24 | 1 | -4/+6 | |
| | | |||||
| * | TextInput fields with color encodings. Draw shades. | 2020-04-24 | 1 | -21/+266 | |
| | | |||||
| * | More theme colors and gradient of lightness | 2020-04-24 | 1 | -9/+67 | |
| | | |||||
| * | Use canvas to draw color palette for example | 2020-04-24 | 3 | -11/+99 | |
| | | |||||
| * | Add example program: color palette | 2020-04-24 | 4 | -0/+274 | |
| | | | | | | | | | | | | | | | | | | | | | | Sliders for many color spaces update as any other sliders are moved around. Color is space is clamped to sRGB, so Lab and Lch color spaces cannot be fully expressed. TODO: - Real-time manipulation of base color to create a color scheme. - Show slider value under each slider - Show output values in text boxes for each color space | ||||
| * | Conditional re-export of palette from iced_core | 2020-04-24 | 1 | -0/+3 | |
| | | |||||
| * | Conversion traits for palette::Srgb | 2020-04-24 | 1 | -1/+23 | |
| | | |||||
| * | Derive Default for Color | 2020-04-24 | 1 | -1/+1 | |
| | | |||||
| * | Simplify range declaration | 2020-04-24 | 1 | -4/+4 | |
| | | |||||
| * | Remove redundant from_srgba and into_srgba methods | 2020-04-24 | 1 | -20/+2 | |
| | | |||||
| * | Add palette test for Color <-> Srgba & manipulation | 2020-04-24 | 1 | -0/+41 | |
| | | |||||
| * | Feature name colors -> palette | 2020-04-24 | 3 | -9/+6 | |
| | | |||||
| * | Add const from_rgba, for RGBA initialization | 2020-04-24 | 1 | -1/+8 | |
| | | |||||
| * | Use debug assertions instead of clamp | 2020-04-24 | 1 | -15/+22 | |
| | | |||||
| * | Fix docstring typo | 2020-04-24 | 1 | -1/+1 | |
| | | |||||
| * | Revert from_rgb to const | 2020-04-24 | 1 | -2/+2 | |
| | | |||||
| * | Remove HSLColor | 2020-04-24 | 1 | -90/+0 | |
| | | |||||
| * | Conversion to palette's Srgba type | 2020-04-24 | 1 | -0/+43 | |
| | | |||||
| * | Add `palette` dependency behind "colors" feature flag | 2020-04-24 | 2 | -0/+10 | |
| | | |||||
| * | HSLColor struct, with conversions to/from RGB | 2020-04-24 | 1 | -16/+106 | |
| | | |||||
| * | Add inversion functions, rename check_rgba -> new | 2020-04-24 | 1 | -4/+14 | |
| | | |||||
| * | Add check_rgba fn to clamp float values to [0,1] | 2020-04-24 | 1 | -3/+23 | |
| | | |||||
* | | Merge pull request #324 from ethanpailes/document-image-format-guessing | 2020-04-27 | 1 | -0/+4 | |
|\ \ | | | | | | | document that img handle constructors guess fmt | ||||
| * | | document that img handle constructors guess fmt | 2020-04-26 | 1 | -0/+4 | |
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | This patch documents the fact that a couple of the image handle constructors know how to guess the image format based on the data that they are provided. I had to dig through `iced` sources until I discovered that those routines ultimately boil down to stuff like [image::load_from_memory][1] from the `image` crate, so I thought I would save others the trouble of doing the same reverse-engineering [1]: https://docs.rs/image/0.23.4/image/fn.load_from_memory.html | ||||
* | | Bump versions :tada: | 2020-04-26 | 3 | -3/+3 | |
| | | |||||
* | | Render meshes after quads in `iced_wgpu` | 2020-04-26 | 1 | -12/+12 | |
| | | |||||
* | | Merge pull request #322 from AlisCode/aliscode/321/fix-async-examples | 2020-04-25 | 2 | -0/+54 | |
|\ \ | |/ |/| | #321 Fix async examples by feature-gating Command implementations + A… | ||||
| * | Use `Rc` in `Command::map` for Wasm | 2020-04-25 | 1 | -1/+1 | |
| | | |||||
| * | #321 cargo fmt | 2020-04-25 | 1 | -5/+1 | |
| | | |||||
| * | #321 Fix async examples by feature-gating Command implementations + Add ↵ | 2020-04-25 | 2 | -0/+58 | |
|/ | | | | pokedex example in CI so that at least one async example is runned on CI | ||||
* | Merge pull request #318 from hecrj/font-associated-type | 2020-04-24 | 10 | -23/+51 | |
|\ | | | | | Make `Font` an associated type of `text::Renderer` | ||||
| * | Make `Font` an associated type of `text::Renderer` | 2020-04-23 | 9 | -23/+45 | |
| | | |||||
| * | Implement `Default` for `Font` | 2020-04-23 | 1 | -0/+6 | |
|/ | |||||
* | Merge pull request #314 from katktv/patch-1 | 2020-04-22 | 1 | -1/+1 | |
|\ | | | | | Fix a typo in ROADMAP |