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
2015-06-03Fix T41177. Bevel shouldn't try to slide along edge when can't see it.Howard Trickey
2015-06-03Make reading previews from .blend file more robust.Bastien Montagne
Hit a case here where rect pointer was not NULL, when h & w were both zero... Shall not happen, but better not crash on such cases!
2015-06-03Do not show brush cursor for fill brush (size not supported)Antony Riakiotakis
2015-06-03Fix error calculating bmesh normalsCampbell Barton
edge vector stack was left un-cleared.
2015-06-03BLI_stack, add clear function.Campbell Barton
2015-06-03Correct own fix reference before assignmentCampbell Barton
3rd fix for silly exception conversion!
2015-06-03Fix memory leak loading multi-layer OpenEXRCampbell Barton
2015-06-03Fix memory leak loading single-layer OpenEXRCampbell Barton
Internal EXR API specifically avoids freeing non-file streams.
2015-06-03Fix for RMB Menu title including shortcutCampbell Barton
2015-06-03Fix UI string clip (reverse search separator char)Campbell Barton
The string may have many '|' characters, only the last is clipped.
2015-06-03Cleanup: check button flag for shortcut delimiterCampbell Barton
2015-06-03Fix multires update (reading `char *` as an `int *`)Campbell Barton
2015-06-03Cleanup: metaballs called memcpy with NULL sourceCampbell Barton
Simplify logic and use realloc
2015-06-03Correct vert/edge slide poll functionsCampbell Barton
Would crash trying to access outside the 3D view.
2015-06-03Correct own recent error printing Python exceptionCampbell Barton
2015-06-03Fix race conditionCampbell Barton
Exposed when checking on T44871
2015-06-02ImBuf: Fix memory leak around EXR handle's multiViewSergey Sharybin
2015-06-02Fix T44742. Bevel now avoids vertex meshes when only two edges are beveled.Howard Trickey
Also, changed the algorithm for generating the vertex meshes when not all edges into a vertex are beveled. Now it tries to slide along edges that form part of the silhouette when possible; when not possible, it tries to snap to the best plane in between the beveled edges.
2015-06-02Fix T36994: Make link modifier fails (soft body)Campbell Barton
2015-06-02Cleanup: use const for object copy funcsCampbell Barton
2015-06-02Fix operator exec /w popups that close the windowCampbell Barton
Related to T44688, note supporting this case isn't so nice, but seems it can be made to work.
2015-06-02Fix compilation error after recent commitSergey Sharybin
2015-06-02Fix T44921: Node editor, nodes position not maintained after Material panel ↵Sergey Sharybin
changes Also improved a bit behavior of adding new nodes, now they will not overlap that badly. Still not ideal, but further improvements better not to happen at bcon4.
2015-06-02Fix own mistake searching python binaryCampbell Barton
2015-06-02Simplify Win32 extension checkCampbell Barton
2015-06-02Fix drawing text on >2gig buffers (stamp for eg)Campbell Barton
2015-06-02Fix T44869: Crash rendering >2gb imagesCampbell Barton
2015-06-01UI: tweaks to ID and non ID preview templatesInes Almeida
- label is shown on a UI_UNIT_Y heigh instead of 0.2 * total button size - vertically centering non-ID previews labels - making some constants dependent on ui units
2015-06-01template id previews: changes for consistency with icon views templateInes Almeida
- elongate the buttons to acomodate the icon without the label overlapping. - removing the blue background - adding a consistent margin all around the popup
2015-06-01template ID previews: quick fix for buttons region overlapping the search buttonInes Almeida
2015-06-01Thumbnails: fix bad handling of invalid thumbnails, cleanup and deduplication.Bastien Montagne
Invalid thumbnails (missing mtime metadata) are to be re-generated, not ignored!
2015-06-01Font Preview: much better handling of i18n case.Bastien Montagne
We have to regenerate previews when we change language. But we also need to do it when translation is changed or added for a language, etc. Previously, we were storing one preview per language, which was also stuffing preview dir with (potentially) tens of PNGs per font file, if user plays with translations. Now we use a better system, which is storing an additional optional metadata in previews (some hexdigest), that Blender can use in addition to datetime to decide when to regenerate previews. This is only used (and needed) by font previews so far, but can easily be reused for other types of previews if needed.
2015-06-01Font Preview: fallback to default english strings in case translated ones ↵Bastien Montagne
have not enough chars in current font. This avoids some ugly 'missing char' in previews - not all cases of course, but most common ones. A complete solution would be much much more involved, and probably not worth it here. Definitively not before a release, at least!
2015-06-01Fix T44915 vertex color lost when adding new layer in edit mode.Antony Riakiotakis
Was copying new layer colors to old layer colors.
2015-06-01Fix T44894: Round two.Bastien Montagne
We cannot `direct_link_packedfile()` twice on a same address, because this tries to map again pf->data address, which leads to nothing (NULL). So now, since `ima->packedfile` and `ima->packedfiles` are mutually exclusive in 'live' blender data anyway, we either read one or the other. Tested from/to official 2.74 and current master, everything looks fine now.
2015-06-01Fix T40621: Tablet in walk mode failsCampbell Barton
Add support for walk mode /w absolute pointing devices.
2015-06-01WM: include tablet data in WM_event_printCampbell Barton
2015-06-01Fix T44747: Drag toggle /w nodes (glitch)Campbell Barton
It was possible to perform actions while performing a drag-toggle.
2015-06-01Cleanup: doxygen commentsCampbell Barton
2015-06-01Fix for leak in BM_uv_element_map_createCampbell Barton
Also correct over alloc and redundant alloc.
2015-06-01Fix T44892: Cursor warp, invoked outside the areaCampbell Barton
If an operator starts outside an area, don't use warping. (problematic for menu's).
2015-06-01Fix vertex slide regression /w rotated objectsCampbell Barton
2015-05-31Fix T44894: Broken packed image import from older .blend file.Bastien Montagne
rBe5fbeba0b3a6e9eea not only restored forward compat, it also broke backward compat... for no reason at all even, exising ima->packedfile is only used by read/versionning code if .blend version is below 274.4 (i.e. no multi-image packing exists).
2015-05-31Improvements to the Freestyle Python API (needed by the SVG Exporter)Tamito Kajiyama
This patch adds some new functionality to the Freestyle Python API, notably: - MaterialBP1D, checks whether the supplied arguments have the same material - Fixes a potential crash in CurvePoint.fedge (due to NULL pointer) - Makes (error handling in) boolean predicates more robust - Adds a BoundingBox type, to make working with bounding boxes easier - Adds several new functions (get_object_name, get_strokes, is_poly_clockwise, material_from_fedge) - Adds a StrokeCollector StrokeShader, that collects all the strokes from a specific call to Operators.create() - Adds hashing and rich comparison to the FrsMaterial type These new features (most of them, anyway) are needed for making a more robust SVG exporter that supports holes in fills. Reviewers: kjym3, campbellbarton Subscribers: campbellbarton Projects: #bf_blender Differential Revision: https://developer.blender.org/D1245
2015-05-31Fix ugly drawing of closed panels in horizontal layoutJulian Eisel
Also minor cleanup
2015-05-31UI: comments (doxygen tweaks)Campbell Barton
2015-05-30fix T44884: corrected a wrong usage of the CustomLayer API (due to a ↵Gaia Clary
misunderstanding)
2015-05-30Correct own error with recent commitCampbell Barton
Caused entering an invalid number to leak.
2015-05-30Fix leak in BMesh convex hull operatorCampbell Barton
2015-05-30Fix reading uninitialized bufferCampbell Barton