Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-01-28Fix T60944: Add Tablet eraser support to annotations usin penAntonioya
2019-01-28Cleanup: sort forward declarations of enum & structCampbell Barton
Done using: source/tools/utils_maintenance/c_sort_blocks.py
2019-01-26Cleanup: remove redundant BKE/BLI/BIF headersCampbell Barton
2019-01-25GP: Set cyclic to OFF when use cutterAntonioya
When cut a stroke, the cyclic must be set to off because keep it gets very weird results.
2019-01-25GP: Use Fill color when drawing strokes for no stroke materialsAntonioya
Artists requested to show the stroke while drawing a new stroke using a material with fill color only, because it's very difficult to see the stroke. Now the stroke shows always but using the fill color, not the stroke color because maybe is not set.
2019-01-25Cleanup: sort cmake file listsCampbell Barton
2019-01-24Cleanup: remove unused "guide_origin" propertyJacques Lucke
2019-01-22GP: Fix UV error for second pointAntonioya
The UV was not calculated for second point (1), only first and > 1
2019-01-22GP: Recalc UV data for primitive strokesAntonioya
The data was not caculated when complete a primitive and it was only updated when use Edit mode.
2019-01-21GP: Fix memory leaks when use cutter with weightsAntonioya
There were some issues when copy the weights and other memory leaks. Also some code cleanup.
2019-01-21T60701: GP using cutter tool on stroke with vertex group crashes blenderAntonioya
2019-01-20Fix T60678: GP, smoothing a stroke's weights multiple times will lead to ↵Antonioya
unweightable points
2019-01-20Fix T60671: GP weight paint crash when smoothing weightsAntonioya
2019-01-18GP: Guides: Fix bug with Mkey and Circular guidesCharlie Jolly
Reported by @pepeland. Adding missing events on the first point was breaking the guide behaviour. Also, updated Ckey so it always defaults to Circular mode when guides are off.
2019-01-18GP: Create materials when separate active layerAntonioya
The materials were not created when used the active layer option of the separate operator.
2019-01-15Fix T59826: grease pencil crash with empty material slot.Brecht Van Lommel
2019-01-15Cleanup: commas at the end of enumsCampbell Barton
Without this clang-format may wrap them onto a single line.
2019-01-15Cleanup: comment line length (editors)Campbell Barton
Prevents clang-format wrapping text before comments.
2019-01-15Cleanup: styleCampbell Barton
2019-01-14Cleanup: unused functionCampbell Barton
2019-01-14Cleanup: compiler warningsCampbell Barton
2019-01-12GP: Cleanup missing bracketsAntonioya
2019-01-11=Fix unused func warning in GP code...Bastien Montagne
2019-01-11Fix syntax error breaking compile in GP code.Bastien Montagne
Seriously… Build your code before committing!!!
2019-01-11GP: New Cutter, Constraints and Segment selectionAntonioya
This commit groups a set of new tools that were tested in grease pencil object branch before moving to master. We decide to do all the development in a separated branch because it could break master during days or weeks before the new tools were ready to deploy. The commit includes: - New Cutter tool to trim strokes and help cleaning up drawings. - New set of constraints and guides to draw different types of shapes. All the credits for this development goes to Charlie Jolly (@charlie), thanks for your help! - Segment selection mode to select strokes between intersections. - New operator to change strokes cap mode. - New option to display only keyframed frames. This option is very important when fill strokes with color. - Multiple small fixes and tweaks. Thanks to @pepeland and @mendio for their ideas, tests, reviews and support. Note: Still pending the final icons for Cutter in Toolbar and Segment Selection in Topbar. @billreynish could help us here?
2019-01-09Fix T60351: Blender crashes when using fill tool without existent keyframeAntonioya
2019-01-08Fix inconsistent naming and behavior for base visible/selected/editable.Brecht Van Lommel
Fixes T60251.
2019-01-08Cleanup: comments causing bad clang-format outputCampbell Barton
2019-01-06GP: Fix missing initialization converting 2.7 filesAntonioya
2019-01-06Cleanup: style, line lengthCampbell Barton
2019-01-04GP: Add Fill keyframe if active not equal to CFRAAntonioya
When fill a stroke if the fill layer hasn't keyframe, the fill is wrong because previous fill shape hide area to fill. Now, if the keyframe is missing in the active layer for the current frame, a new frame is added.
2019-01-03Fix T60022: Crash when adding grease pencil object to a collection disabled ↵Antonioya
in viewport. See D4163 Thanks to Habib Gahbiche (@zazizizou) for the fix.
2019-01-02Fix T60051: Wrong stroke projection when viewmode set to FrontAntonioya
As the z-depth is calculated using the internal drawing, if we use the front mode the z-depth is wrong. The Front or Back mode must be used only for display, but not for calculation.
2019-01-02Fix T60031: Joining two Grease Pencilobjects sometimes crashesAntonioya
The drawing cache was not set as dirty and drawing engine used old data.
2019-01-02Cleanup: indentation, namingCampbell Barton
Use rna naming conventions for unit-settings callbacks.
2019-01-02Cleanup: rename target_weight -> weightCampbell Barton
Match name of mesh weight paint.
2019-01-01GP: Don't use offset for Stroke projectionAntonioya
The offset is only used in Surface mode.
2018-12-31Fix T60015: snap to grid - snaps only to largest incrementmano-wii
Caused by rBc7a96651dfa4 when trying to remove all uses of the deprecated `rv3d->gridview`.
2018-12-30Cleanup: remove non-existing function declarationsCampbell Barton
2018-12-30GP: Mew Merge Strokes operatorAntonioya
This operator allows to create a new stroke joining several selected points of different strokes. The new stroke will use the current material. To use, first select the points to be merged. Optionally can remove the old points and strokes. The operator is available in Edit mode in the Specials menu and Stroke menu.
2018-12-30Cleanup: warnings (clang)Campbell Barton
2018-12-28GP: Rename GP_STROKE_RECALC_CACHE to GP_STROKE_RECALC_GEOMETRYAntonioya
The GP_STROKE_RECALC_CACHE identifier was changed to GP_STROKE_RECALC_GEOMETRY because the previous name was confusing and could be confused with the recalculation of the Draw Manager cache.
2018-12-27Fix T59861: converting GP stroke to curve doesn't immediately workPhilipp Oeser
Reviewers: antoniov, brecht Maniphest Tasks: T59861 Differential Revision: https://developer.blender.org/D4127
2018-12-25GP: Remove duplicate code moving to single functionAntonioya
2018-12-24Fix/cleanup another bunch of UI messages issues.Bastien Montagne
Also (mostly in comments): behaviour -> behavior (we use American English).
2018-12-24Cleanup: First batch of UI messages fixes (typos, final points...).Bastien Montagne
Also contains some code typo fixes (mostly, adtaptative -> adaptive, former is nearly innexistant in English, let's stick to simple valid words ;) ).
2018-12-23GP: Small changes to help textAntonioya
2018-12-23GP: Add Shift+F to define strength for primitivesAntonioya
2018-12-23Fix T59782: Replace RMB by MMB in bottom help textAntonioya
2018-12-22GP: Update Suzanne 2D objectAntonioya
Review of the "D Suzanne to reduce number of points and small changes in shapes and colors. Designed by Matias Mendiola and Daniel M. Lara