summaryrefslogtreecommitdiff
path: root/rsvg_internals
Commit message (Expand)AuthorAgeFilesLines
* Suppress warning about large size difference between enum variantsSven Neumann2020-08-251-0/+1
* Suppress warning about module inception, this is intentional hereSven Neumann2020-08-251-0/+1
* Suppress clippy errors about casts to more strictly aligned typesSven Neumann2020-08-252-0/+5
* Be explicit about cloning the reference in PropertyBagIterSven Neumann2020-08-251-1/+1
* Set cairo operator from MixBlendMode property prior to paintingJohn Ledbetter2020-08-251-0/+2
* Add mix-blend-mode CSS property definitionsJohn Ledbetter2020-08-253-2/+55
* More pointers for newcomersFederico Mena Quintero2020-08-241-22/+33
* Documentation on how to add a new propertyFederico Mena Quintero2020-08-244-8/+106
* Merge branch 'svenfoo/librsvg-fix-more-clippy-warnings'Federico Mena Quintero2020-08-245-17/+14
|\
| * Express `Result.and_then(|x| Ok(y))` as `map(|x| y)`Sven Neumann2020-08-242-8/+2
| * Follow naming conventions for methods taking selfSven Neumann2020-08-242-7/+7
| * Minor style improvement suggested by clippySven Neumann2020-08-241-2/+5
* | Merge branch 'svenfoo/librsvg-use-float-cmp'Federico Mena Quintero2020-08-242-3/+5
|\ \
| * | Use float_cmp for floating number comparisonsSven Neumann2020-08-242-3/+5
| |/
* | Change Chars::new() to take an initial textSven Neumann2020-08-243-17/+28
|/
* Remove PathBuilder::new and just derive(Default) for itFederico Mena Quintero2020-08-215-31/+19
* Remove obsolete commentFederico Mena Quintero2020-08-211-1/+1
* Remove lifetime annotations that can be elidedSven Neumann2020-08-211-1/+1
* Avoid calling map(f) where f is a closure that returns the unit typeSven Neumann2020-08-212-2/+6
* Avoid cloning an owned value that is going to be droppedSven Neumann2020-08-212-5/+2
* Simplify logic in PathParser::should_break_arg_sequence()Sven Neumann2020-08-211-5/+2
* Replace find() followed by is_some() with any()Sven Neumann2020-08-211-1/+1
* Make the early return explicit instead of using Err(x)?Sven Neumann2020-08-213-5/+7
* Avoid using match for destructuring a single patternDunja Lalic2020-08-2110-96/+86
* Avoid strict comparison of floating point valuesSven Neumann2020-08-212-3/+4
* Avoid having if/else with the same bodySven Neumann2020-08-211-3/+1
* Allow many single char variable names in some placesSven Neumann2020-08-213-0/+6
* Implement Default where missingSven Neumann2020-08-212-0/+12
* Use as_deref() instead of `.as_ref().map(String::as_str)` on an Option valueSven Neumann2020-08-213-14/+8
* Express `Result.and_then(|x| Ok(y))` as `map(|x| y)`Sven Neumann2020-08-216-36/+23
* Remove needless return statementsSven Neumann2020-08-211-9/+6
* Remove redundant importsSven Neumann2020-08-216-9/+0
* (#609): Apply the clip node's transform in DrawingCtx.clip_to_node()Sven Neumann2020-08-201-1/+6
* (#560): Ignore missing filter definitions instead of not rendering the filter...Federico Mena Quintero2020-08-191-7/+3
* (#568): Support href and xlink:href for URL references everywhereFederico Mena Quintero2020-08-187-18/+36
* New href module to deal with xlink:href vs. hrefFederico Mena Quintero2020-08-182-0/+50
* Update float-cmp to 0.8Bastien Orivel2020-07-261-1/+1
* Update itertools to 0.9Bastien Orivel2020-07-261-1/+1
* benches: box_blur: Replace deprecated functionErnestas Kulik2020-07-221-36/+40
* Draw a square at origin of empty paths when linecap is a squareBastien Orivel2020-07-142-4/+168
* cargo fmtFederico Mena Quintero2020-06-302-17/+29
* Declare the 'font' shorthand for SpecifiedValues and expand it into longhandsFederico Mena Quintero2020-06-302-2/+66
* Extract separate FontSpec struct from the Font::Spec variantFederico Mena Quintero2020-06-302-24/+19
* Clean up the import aliases in properties.rsFederico Mena Quintero2020-06-301-11/+6
* Replace if with matchFederico Mena Quintero2020-06-301-4/+4
* Extract function to expand the marker shorthandFederico Mena Quintero2020-06-301-15/+23
* Add a couple of tests for the font shorthand parserFederico Mena Quintero2020-06-301-0/+34
* Implement parser for the "font" shorthandFederico Mena Quintero2020-06-302-1/+137
* Make LineHeight not a newtypeFederico Mena Quintero2020-06-302-35/+34
* Provide an accessor to FontFamily's inner stringFederico Mena Quintero2020-06-252-1/+7