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
path: root/source
AgeCommit message (Collapse)Author
2011-06-15translate left panelXiao Xiangquan
2011-06-15merge from trunk r37405Xiao Xiangquan
2011-06-11accident when merge. revert to r37405Xiao Xiangquan
2011-06-11accident when merge. revert to r37405Xiao Xiangquan
2011-06-11merge from trunk r37405Xiao Xiangquan
2011-06-11fix for recent commit, this stops makesdna from working right:Campbell Barton
/* ... // ... */
2011-06-11remove backbuf from internal struct's (unused in 2.5x)Campbell Barton
2011-06-11fix for using system includes, the include macro wasn't un-setting the ↵Campbell Barton
previous include list so system includes could be mixed up with non system includes. Also workaround for CMake 2.8.4 & GNU-Make which doesn't set CMAKE_INCLUDE_SYSTEM_FLAG_C
2011-06-11suspiciously consistent typoJason Wilkins
2011-06-10fix [#27627] Strange behavior with solid open gl lightsCampbell Barton
disable turning off all lights in the user preferences.
2011-06-10Bugfix #27136Ton Roosendaal
Ending localview - which is similar to layer change - should send update similar to change layers too. Needed for example when loading a file saved in local view or when changing time in localview.
2011-06-10fix [#27607] Scene's render.filepath gets cropped to 159 charactersCampbell Barton
use 240 char limit, remove backbuffer path which wasn't used.
2011-06-10added a check to console auto-compleation for pythons struct_seq type, so ↵Campbell Barton
bpy.app and sys.float_info autocompleate their attributes rather then bring treated as a typle.
2011-06-10Add i18n support for C code, and most menu items can be translated, nowXiao Xiangquan
2011-06-09add includes for windows.Campbell Barton
2011-06-09update for tests, error out when duplicate modules are found, all ctest ↵Campbell Barton
tests pass again.
2011-06-09Bugfix #27081Ton Roosendaal
Displacement mapping didn't do linear interpolation between pixels, causing render artefacts. Now it uses for image render without AA a default interploation filter of 1 pixel size. Fix provided by Miika Hamalainen. Thanks!
2011-06-09Fix for GLSL material node inside groups. These were using the GPULink point ↵Lukas Toenne
from the input stack argument, but this only exists for directly linked nodes. If a node is linked directly to a group socket, which is not linked externally, the stack argument is actually the external group input.
2011-06-09Bugfix #27078Ton Roosendaal
Added notifier to make material preview update when selecting a face in editmode with a different material than displayed.
2011-06-09Bugfix #26886Ton Roosendaal
Operator redo: F6 menu didn't work for macros yet (like Duplicate-grab).
2011-06-09replace log() calls with constantsCampbell Barton
2011-06-09fix for own mistake & fix some comments.Campbell Barton
2011-06-09fix for memory leak re-binding meshes.Campbell Barton
2011-06-09Fix [#27378] ASC-CDL Color Balance Node does not allow for full range of valuesMatt Ebb
Report title is incorrect, it does allow for the full range, but actually allows too much, so clamping slope and power min at 0.
2011-06-09RNA properties - expose values as radians rather then degreesCampbell Barton
- sequencer wipe angle - mesh autosmooth - bevel modifier angle - edge split angle
2011-06-09use a better method for finding the precision to use for float buttons, ↵Campbell Barton
about 4x faster to calculate and will show for eg, 0.0108 rather than 0.01, but 0.0100001 still displays as 0.01.
2011-06-09fix [#27616] Appending an object from a file brings all existing group links ↵Campbell Barton
to scene When appending from a blend file which had an object already linked, _but_ was not in any scenes. - the linked object would be instanced.
2011-06-09[#27615] Box select of mesh object disabled or translated due to curve objectCampbell Barton
ED_view3d_init_mats_rv3d was calling glMultMatrixf() which was mostly harmless but could also lead to confusing bugs (2 reported previously). Looked into this and every call to ED_view3d_init_mats_rv3d except for object drawing, doesn't need this so made a second version of ED_view3d_init_mats_rv3d - ED_view3d_init_mats_rv3d_gl which does the matrix multiplication, remove confusing checks in selection code.
2011-06-09add foreachIDLink function for cloth, remove cloth specific newlibadr calls ↵Campbell Barton
in readfile.
2011-06-08Bugfix #27601Ton Roosendaal
Revision for previous fix; fast gaussian now survives on images with a dimension smaller than 3 pixels! Thanks Bastien Montagne for patch.
2011-06-08fix for own error r35918, generalizing looping over modifier ID linksCampbell Barton
broke loading smoke group references because they already had calls to newlibadr_us() elsewhere, removing those assignments fixes loading.
2011-06-08Bugfix #27601Ton Roosendaal
Scaling in compostior down to 1 pixel size crashed gaussian blur.
2011-06-08Apply [#27477] COLLADA export support for textures mapped to COLSPECNathan Letwory
Patch provided by Pelle Johnsen
2011-06-08Shuffle some build code around to ensure debug builds on Windows actually ↵Nathan Letwory
run too. * creator/SConscript is now empty, code is moved to an emitter function in Blender.py * make sure COLLADA debug libs are used when BF_DEBUG=True
2011-06-08Bugfix [#27586] P for setting playback range is clamped to > 0Joshua Leung
Thanks for the patch Bastien Montagne. Was just legacy code from 2.4x
2011-06-08fix of fix :| [real fix for #36787 -- it was wrongly fixed on #36964]Dalai Felinto
I guess I tested the fix outside the camera view (which always worked). duhhh Working now.
2011-06-08cmake: remove python include in the wm module, set opengl as a system include.Campbell Barton
2011-06-08don't write file history in backgound mode (running ctest would overwrite ↵Campbell Barton
all my recent-files.txt), and add an error about mingw/quicktime being unsupported.
2011-06-07draw sequences with invalid effect frame ranges pink to highlight they are ↵Campbell Barton
invalid and wont render.
2011-06-07fix for vertex group copy to selectedCampbell Barton
- was using un-initialized stack memory if the source / target object had no vertex group. - if the target object had no vertex groups it would fails silently (not a bug but not very good functionality) - added an error message if any copying fails.
2011-06-07fix for sequencer transform with effects strips where the effects could be ↵Campbell Barton
moved to invalid times to avoid overlap but would immediately refresh back to overlapping locations after.
2011-06-07disable the readonly state while rna property callbacks run.Campbell Barton
2011-06-07Fix: correct spacing for file select items, using font size + dpi.Ton Roosendaal
2011-06-07rna option not to save certain properties for redoing later, currently only ↵Campbell Barton
used by operator presets.
2011-06-07fix for edge slide snapping values being incorrect (reported by Nether Hound).Campbell Barton
Also dont call the value a 'Percent' and clamp the range displayed in the header. snap range being
2011-06-07update ctest md5sums for import/export to match changes to the scripts, also ↵Campbell Barton
some minor formatting change for bpy_props.c
2011-06-07getting useful results out of the round compo node was tricky, use the ↵Campbell Barton
second value to determine how much to round by (can be used like a posterize filter)
2011-06-07error pointed out by Jeroen Bakker with the math nodes round function. was ↵Campbell Barton
incorrectly using the output rather then the input.
2011-06-07Modify the unifont.ttf to have a better lookXiao Xiangquan
2011-06-07fix for glitch in previous commit with 0.00002 displaying as 0.000020, this ↵Campbell Barton
uses 2 calls to double_round which I'd rather avoid but at least it now works right for users.