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
2011-10-08fix [#28821] Whole Character keying set ignores non animatable propertyflagCampbell Barton
2011-10-08fix [#28846] Relative paths on linked scene failsCampbell Barton
2011-10-07fix [#28800] Scene NULL in frame change callback, crashes on property update.Campbell Barton
2011-10-07rna_ParticleDupliWeight_name_length was returning an incorrect value. ↵Campbell Barton
Zealous debug checks are testing the (buf[len] == '\0')
2011-10-06hide 3d view header `use_pivot_point_align` button in editmode since its not ↵Campbell Barton
used there, also remove unneeded copy() funcs from quick effects.
2011-10-05rename rna OperatorTypeMacro --> OperatorMacro, since operators types are ↵Campbell Barton
just called Operator
2011-10-04Fix #28202: (only) modifying keymap item properties did not save properly, theBrecht Van Lommel
update signal for this was missing. Problem is that the operator properties RNA update callback doesn't know the associated keymap item, worked around it with UI template now.
2011-10-04Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-10-03- use BLI_findstring rather then while loop for listbase lookupsCampbell Barton
- remove BLI_assert I recently added to RNA_property_pointer_type since its intentionally called with no type check.
2011-10-03Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-10-03fix [#28023] VSE: Transform Markers doesn't do anythingCampbell Barton
- renamed to 'Sync Markers' to match action editor. - action editor option was broken in the same way as the sequencer.
2011-10-03Change struct alignment for structs which are intended to be aligned but aren't.Campbell Barton
remove uiIconImage too since its unused.
2011-10-03use use_ prefix for boolean value.Campbell Barton
2011-10-02Fix [#28436] ID mask creates 'feather' around ID even with AA turned off.Bastien Montagne
Perhaps not the ideal solution, but it works, is easy to undo if/when we have a better one, and I’m pretty sure it won’t break anything...
2011-10-02Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-10-02fix [#28786] Large enum lists display columns in inverted order (right to left)Campbell Barton
also cleared annoying intel c++ warnings.
2011-10-01support for object data material assignment in pythonCampbell Barton
eg: bpy.context.object.data.materials[0] = bpy.data.materials["SomeMaterial"]
2011-10-01add a collection function slot for assignment (not used yet).Campbell Barton
2011-09-30Minor: Other UI strings typos and tweaks.Bastien Montagne
2011-09-29SVN maintenance.Guillermo S. Romero
2011-09-29Minor: Other UI strings typos and tweaks.Bastien Montagne
2011-09-29Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
(grrr... That update created tons of new things... back to ~40% done...)
2011-09-29rna function:Campbell Barton
vecs = Camera.view_frame(scene) returns 4 points for the camera frame, without this its very hard to know if a point is in the camera view or not, without rewriting blenders internal logic in python.
2011-09-28Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-09-28Fix #28601: SEGFAULT: Regression in free_imbuf_seqSergey Sharybin
Actually, it's NULL-pointer dereference in rna_Sequence_update caused by RNA cache. Discussed with Joshua and he thought it's acceptable for now to add extra NULL-check here.
2011-09-28fix for incorrect use of strlen() with the sequencer rna (no need for ↵Campbell Barton
strlen()+1)
2011-09-28use __func__ rather than function names in rna prints, some were incorrect.Campbell Barton
also replace use of strlen() where checking first char is enough.
2011-09-27Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-09-26Remove PROP_TRANSLATE flag from labels for operators, menus and panels.Sergey Sharybin
This flag lead to storing translated label for templates and instant language switching became impossible. This labels are display-time translated.
2011-09-26Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-09-26change define INTERNATIONAL --> WITH_INTERNATIONALCampbell Barton
also rename backface_culling --> use_backface_culling (which is used elsewhere in rna)
2011-09-26add missing imports to wm.py and remove "." from rna descriptions.Campbell Barton
2011-09-26BGE Material settings renaming Back Culling to Backface Culling and make it ↵Dalai Felinto
on by default under suggestion of Mitchell Stokes (Moguri)
2011-09-25whitespace cleanupCampbell Barton
2011-09-25Committing patch #27442: Adaptive time step for fluid particles. The number ofAlex Fraser
subframes can now be altered automatically while an SPH (fluid particle) simulation is running.
2011-09-25Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-09-25patch [#28616] Multiple particle systems supportCampbell Barton
from Andrea Rugliancich (andrearu01)
2011-09-25make new rna variables more consistant with existing names.Campbell Barton
2011-09-25manual update on changelog (python API)Dalai Felinto
Change as suggested by Campbell. I'm not sure if this is the way to do for enums, I will check with him later
2011-09-25removing texface rna - changelog.rst update soonDalai Felinto
2011-09-24Minor: Added PROP_DISTANCE sub-type to min/max dstances of WeightVG ↵Bastien Montagne
Proximity, and Radius of Warp modifiers.
2011-09-24Minor: Other UI strings typos and tweaks. Also updated french po & moBastien Montagne
2011-09-23Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-09-22Minor: Other UI strings typos and tweaks.Bastien Montagne
2011-09-22comment some unused vars / assignments.Campbell Barton
2011-09-21check that descriptions dont end with a '.', for non release builds.Campbell Barton
this is annoying for translators so rather then correct along the way which gives merge conflicts for branches - print a complaint message.
2011-09-21Minor: Other UI strings typos and tweaks.Bastien Montagne
2011-09-21Translation: reload font on enabling/disabling use international fonts.Brecht Van Lommel
2011-09-21add missing define for last commit and tag bl_label & bl_descriptions for ↵Campbell Barton
translating too
2011-09-21py/rna string subtypes for strings which should be automatically translated:Campbell Barton
layout.prop("blah", text="Translate Me!")