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-05Fix outdated stub factory class for pointcache when Alembic is disabled.Lukas Tönne
2015-06-05Depsgraph: Fix typo in header guard commentSergey Sharybin
2015-06-05ImBuf: Fix compilation error with latest OIIOSergey Sharybin
Latest OIIO libraries are using Boost libraries from the public headers.
2015-06-05Disable collapse images option after operator ends.Antony Riakiotakis
2015-06-05BMesh: decimator, allow vgroup factor over 1Campbell Barton
Can be useful to apply more extreme weighting
2015-06-05Check ftell return valuesCampbell Barton
2015-06-04Collapse image sequence feature now uses BLI_path_* functions to detectAntony Riakiotakis
filenames.
2015-06-04Fix stupid recent mistakeAntony Riakiotakis
2015-06-04Merge branch 'master' into gooseberryAntony Riakiotakis
Conflicts: source/blender/makesdna/DNA_object_types.h
2015-06-04New "use placeholders" feature of the sequencer did not detect correctAntony Riakiotakis
filenames. Added BLI_path utility functions to decompose a path name and extract the frame number. It should be useful in autocollapse feature as well
2015-06-04BMesh decimate, improve behavior with weightsCampbell Barton
Add slider to adjust the influence of weights relative to geometry distortion. This allows subtle influences to be applied - without drastic changes in behavior.
2015-06-04Make clamping able to return to exact previous values.Antony Riakiotakis
2015-06-04Fix modifiers stack not recalculated when mapping requirements changeAntony Riakiotakis
Reported by pixaal on irc, basically reproducable by inserting bevel modifier on cube and entering/exiting texture paint mode. Now object stores last needsMapping variable as well as customdata mask. Also now texture painting only needs mapping when we are in texture paint selection mode, so modifiers that don't support mapping can still be used to paint now.
2015-06-04Fix tooltip colors not initialized correctlyJulian Eisel
Already committed similar fix (rBbeaed66f292dd) but saw it appearing on other peoples screens a few times since them. Never was able to recreate though. This should make sure everything is initialized fine, so if we see it appearing again, then it's likely because of manual tweaks or the version saved in the .blend.
2015-06-04correct last commitCampbell Barton
2015-06-04BMesh: decimator minor editsCampbell Barton
2015-06-04Load image sequence collapsing for sequencerAntony Riakiotakis
Very dirty feature that will have to be reimplemented when the new asset engine makes it into blender. This commit tweaks the filebrowser to detect sequences of images that form parts of a movie. The files need to be in the format <number>filelame.ext or <number>.filename.ext There is a new option next to hidden file option that makes it so this collapsing takes place. When collapsing is on, any movie files that have the same filename will be collapsed to the first detected file in the sequence. Selecting that file will select all files in the sequence. There is a shortcut in the sequence editor in the Add menu, "Image Sequence" that enables collapsing by default. Unfortunately, selecting multiple movies will not add multiple sequences to the sequencer, at least for now, but it should make it quite easier for people to quickly select the whole range of images for a movie. Importing the image sequence into the sequencer will use placeholders, so any missing images will display as black.
2015-06-04Merge branch 'master' into gooseberryLukas Tönne
Conflicts: intern/cycles/kernel/svm/svm.h
2015-06-04Fix buffer overrun searching program path on win32Campbell Barton
2015-06-04Loading raw targa now sets the filetypeCampbell Barton
2015-06-04Cleanup: redundant checksCampbell Barton
2015-06-04Fix for leak creating stereo imagesCampbell Barton
2015-06-04Cleanup: clarify order of precedence: &/?Campbell Barton
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-03Merge branch 'alembic' into gooseberryLukas Tönne
2015-06-03Do not show brush cursor for fill brush (size not supported)Antony Riakiotakis
2015-06-03Only use string properties from the cachelib for metadata.Lukas Tönne
Using ints and floats would require prefixing the Alembic metadata keys, which becomes messy and ambiguous. Encoding other data types as strings can be done on the python side as well.
2015-06-03Have to use IDP_ReplaceInGroup to overwrite ID properties that alreadyLukas Tönne
exist.
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-02Added missing break statements.Lukas Tönne
2015-06-02Use ID property groups for storing and loading metadata associated toLukas Tönne
Alembic archives. Two separate property groups for metadata are used (so that reading caches does not overwrite metadata for output caches).
2015-06-02Merge branch 'alembic' into gooseberryLukas Tönne
2015-06-02Write metadata to caches (application name, date of creation, userLukas Tönne
description). Cache library output archives now have a description string next to them that gets written into the archive.
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-02Display basic metadata of a cache archive in the cache library inputLukas Tönne
settings.
2015-06-02Silence compiler errors by returning a default value for vectorLukas Tönne
interpolation.