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-03-05use NULL rather then 0 for pointer assignments & comparison, modifier, imbuf ↵Campbell Barton
& editors.
2011-03-05blenderplayer building again in CMake + OSX (and Linux I guess) patch from ↵Dalai Felinto
IRIE Shinsuke
2011-03-05workaround for crash (not an actual fix) [#26316] Mirror and EdgeSplit - ↵Campbell Barton
Grab Vertex do crash
2011-03-05fix [#26323] Crash when adding to a vertex group with a raw inCampbell Barton
2011-03-05Utility defines for quick timing tests.Campbell Barton
for most cases: TIMEIT_START(my_test) .... TIMEIT_END(my_test) prints time, test name, function name and line number.
2011-03-04Bugfix #26270Ton Roosendaal
Transform started with button in Toolbar was drawing the helper line badly. This needed two fixes: - helper line now has poll() callback to check for correct region - event system needs to set 'subwinactive' for modal handlers too The latter might fix issues with cursor/overlay drawing in other cases?
2011-03-04quiet warnings and fix building without python.Campbell Barton
2011-03-04Bugfix #26317Ton Roosendaal
Shift+D in graph editor was an operator calling internally an operator. Better is to make it a Macro, then Undos and Esc work nicely. Note for API users: the operator "graph.duplicate" will now just copy the selection and not run transform. Nicer too :)
2011-03-04Forgot this one from previous commit.Nathan Letwory
For now people should extract the python32(_d).zip in the lib/win*/release dirs into similarly named directories.
2011-03-04Two additional fixes for node-tree + texture paint:Ton Roosendaal
- "need exec" flag was cleared in wrong tree for preview renders (it should clear it in the copy, i did in original). This fixes projection paint on images with previews open - Previews for nodes were copied always, now only for previews invoked by node editor itself.
2011-03-04Py_hash_t is new typedef in Python 3.2, typedeffing Py_ssize_t. Changing to ↵Nathan Letwory
that to keep "slow adaptors" happy ;)
2011-03-04long hash caused stack corruption in _PySet_NextEntry. This wanted a ↵Nathan Letwory
Py_hash_t, so made hash into such.
2011-03-04Bugfix [#26312] Wrong text in a button in the Stretch to constraintJoshua Leung
This looks like a simple Copy+Paste typo
2011-03-03Fix for [#26254] Rendering problem with group-instances of particle-instancesJanne Karhu
* Render level derived mesh (needed for proper hair rendering) was only calculated before duplication code if the particle object was a level 0 duplicator, so particles creating objects inside a dupligroup didn't work. * I really don't see the need for the level == 0 check, so I just removed it and after some quick tests can't see any negative effects. If the check is needed for some case though then a more complicated test is needed to handle all cases.
2011-03-03bugfix #26267Ton Roosendaal
ImageWindow + 3D view texture paint + texture preview render + texture nodes. Threading hell! But it works now :)
2011-03-03use NULL instead of 0 for pointers, (editors)Campbell Barton
2011-03-03replace 0 with NULL when used as a pointerCampbell Barton
2011-03-03fix for invalid empty string check in uniquename callback.Campbell Barton
2011-03-03Bugfix #26307Ton Roosendaal
Blender crashed on repeatedly pressing "reload image" or "unpack" and other image options, with a material/texture preview running. Solved with a signal to stop preview render before doing the action.
2011-03-03Fix #26273: mirror mod. + armature mod. + rotated armature == wrong ↵Sergey Sharybin
reference axis for moving verts (when mirror comes first) Do not overwrite coord of vertices in mapped vertex array used for crazyspace corrections. This should make stuff use position of mesh vertex after deformation, not possible generated images of this vertices.
2011-03-03fix crash from own recent changes [#26271] Crash when accessing ↵Campbell Barton
bpy.data.node_groups
2011-03-03Fix #26261: blend from shape operator "add" option was not working correct.Brecht Van Lommel
2011-03-03Py/RNA API: WITH_PYTHON_SAFETYCampbell Barton
compile time option which enables extra safety checks. since this is noticeably slower I rather not enable by default yet.
2011-03-03Py/RNA api:Campbell Barton
fix for crash when iterating over a collection which allocates the collection and frees on when finished. The ability for BPy_StructRNA to hold a reference to other PyObject's was added to support this.
2011-03-03fix for own error made r35267.Campbell Barton
2011-03-03Py/RNA api - real collection iterator Campbell Barton
Previously the api just converted the collection to a list and got the iterator from the list to return. This has the advantage that it uses minimal memory on large collections where before it would make an array. Though the main reason for this change is to support a bugfix for collections which free memory when they are done, this currently crashes the python api since once the list is built, the data is freed which is used by the list items in some cases (dynamic enums for eg).
2011-03-03further reading, need to untrack tracked PyObjects before clearing their ↵Campbell Barton
trackable vars.
2011-03-03support for mathutils GC wasn't complete since PyObject_GC_Track is supposed ↵Campbell Barton
to be called once the fields are filled in.
2011-03-03formatting edits. (no functional changes)Campbell Barton
2011-03-03solidify material offsets for 2nd surface and rim faces.Campbell Barton
run do_versions() on use_rim_material option so Sintel's jacket loads ok. (request from Bassam)
2011-03-03minor correction for r35312, check the operator returns finished.Campbell Barton
use lambda for uv.py (no functional change).
2011-03-03BGE: Material Force Field renaming + reorganizationDalai Felinto
the old FH setting was blended with the other physics settings (friction and elastic) Also in the Physics panel it was saying "Use Material Physics" but the button is only for Force Field. Since I was here I decided to change the Constraint FH ui name from Fh to Force. I don't think users really understand what FH is (I for once don't). Thanks to Carsten Wartmann for pointing that out.
2011-03-03Shrinking the marker mouse-y tolerance again. It was a bit too high,Joshua Leung
making normal transforms get caught too often. I've got a few more methods that I'll be trialling in the near future
2011-03-03Bugfix [#26269] Initiating a duplication with shift D and cancellingJoshua Leung
in dope sheet/ graph editor leads to duplicated keys The old hack using the transform "undostring" didn't work anymore, as this wasn't set. Instead, I've added a special mode transform mode for this that the duplicate operators can set to get this functionality.
2011-03-03Logic Editor: link a Sensor with an Actuator and automatically creates an ↵Dalai Felinto
And Controller linked to them ------------- Given the code perspective this is a hacky solution. However it's self-contained and documented one. Ended having a talk with Ton and he agreed that this can acceptable in this case. Zero chances of crashes (I've been using this myself for more than 6 months now). Give it a shot. Although the code is +- for the user it's a really nice addition. At the moment it makes more sense to put energy into the future Nodal Logic. Yet, it's nice to give the current Logic Editor the love it deserves.
2011-03-02Logic UI: reverting back the PROP_ANGLE propsDalai Felinto
The Logic Bricks that use angles (Radar Sensor and Constraint Actuator) do so in degree. Reverting for the time being. Ideally we want to make them to use radians internally (that requires at least a doversion and a convert from radians to degree in BGE Converter routine). If someone feels like helping on that, please go ahead.
2011-03-02tag unused varCampbell Barton
2011-03-02Change RNA weakref code to use a ghash rather then a PyList, removing items ↵Campbell Barton
from the list was far too slow.
2011-03-02Tsk! glGetFloatv() gives alpha too for GL_CURRENT_COLOR, so a four long ↵Janne Karhu
vector is needed!
2011-03-02Fix for [#25326] FCurve rotate gives strange results.Janne Karhu
* The fcurve points changed their order when rotating, but the transform data wasn't updated properly for this change so some curve handle pointers got lost. * Also found a second bug while fixing this: The fcurve handle type pointers weren't updated at all when the order changed, so some auto handles could turn into aligned handles even if the transform was canceled (no undo possible in this case!).
2011-03-02simplify rna internal weakref use.Campbell Barton
2011-03-02Bugfix #26226Ton Roosendaal
ImageWindow: hotkey "P" for Scopes was in conflict with Pinning. Remapped it to "T" for time being, although it's not a toolbar...
2011-03-02align weakref list for rna (properties were using wrong pointer)Campbell Barton
2011-03-02Removed tests for existing node pointers in RNA function for new links. ↵Lukas Toenne
Group node sockets don't have any specific node they belong to, so no node pointers are found.
2011-03-02From the OFTL (old fart todo list)Ton Roosendaal
Right Mouse on area edges has menu to Split or Join. Works like 2.4. Code needed cleanup and upgrade; operators were hardcoded tied to using the area corner widgets only. In theory this is getting py ready even, but that might need some additional testing. :)
2011-03-02minor fixes to weakref validation before making bigger changesCampbell Barton
2011-03-02fixed compile problem intruduced in r35295M.G. Kishalmi
one import was missing, another one used twice.
2011-03-02SVN maintenance.Guillermo S. Romero
2011-03-02replace references to old arithb libraryCampbell Barton
2011-03-02move anim functions out of bpy_rna.c, its getting too big.Campbell Barton