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
2010-08-10minor adjustments to python scripts to make them easier to run outside of ↵Campbell Barton
blender.
2010-08-10repr() functions for the python api, this means it can print ↵Campbell Barton
'bpy.data.objects[foo].modifiers' from the objects modifiers, uses the same function thats used to make the animation path.
2010-08-10moved idcode functions into their own file (was added as a todo in the ↵Campbell Barton
comments), these were mixed in with file reading code - BLO_readfile.h bot these functions are not spesific to reading.
2010-08-10Smoke:Daniel Genrich
- Fixing UI glitch so that range and UI range now matches - Increased max to 400 secs (at 25 FPS) to allow more artistic freedom
2010-08-10- Enable shape key switching in edit mode for curves, surfaces and latticiesSergey Sharybin
- Disable changing of lattice size if there are shape keys
2010-08-10include rna parent class names in renaming listCampbell Barton
2010-08-10header re-shuffle, some headers contained unneeded refereces to other ↵Campbell Barton
headers, better include inline with the C files that need them
2010-08-10Added additional (optional) subframe argument to RNA API function: ↵Matt Ebb
scene.set_frame() This is used to set the current frame to a floating point subframe state between 0.0 and 1.0 added to the integer frame. A main usage for this is retrieving geometry at sub-frame intervals for use in multi-segment motion blur: http://mke3.net/projects/3Delight_blender/renders/multisegment_blur.mov Example: scene.set_frame(5) or scene.set_frame(5, 0.25)
2010-08-10rewrite poll methods using a base class implementation instead of a global ↵Martin Poirier
function (now that this is possible because of it being a class method)
2010-08-10Bugfix for:[23234] Blender File Browser - Back Button does work with first ↵Dalai Felinto
directory entered? For !WIN32 systems the fix was in ED_fileselect_set_params (basically adding the first folder in the sfile->folders_prev list) For WIN32: I talked with Nathan (Jesterking) and he agreed that the fix in path_util.c was required too. Without that BLI_path_abs was always making WIN32 paths ending with \ to end with \\ (e.g. C:\Blender\ --> C:\Blender\\) And this was making the folder to fail ISDIR tests.
2010-08-10SVN maintenance.Guillermo S. Romero
2010-08-09Fix bug #22828, "Exporting as COLLADA crashes Blender".Arystanbek Dyussenov
2010-08-09OBJ Export:Thomas Dinges
* Removed duplicate use_animation variable, sorry! * Added some descriptions.
2010-08-09OBJ Export:Thomas Dinges
* Script was broken, fixed. * Started some code cleanup, mainly variable names. * Tabs > Spaces
2010-08-09rna refactoring update, order by class, attribute.Campbell Barton
2010-08-09fix from recent poll() edits.Campbell Barton
2010-08-09restrict prefix checking to booleans for nowCampbell Barton
2010-08-09rna refactor...Campbell Barton
- added a script to merge 2 lists of rna renaming from/to - merged rna_booleans.txt into rna_properties.txt - made rna_cleaner.py sort by class.from by default.
2010-08-09python draw callbackCampbell Barton
- optional argument for the drawing mode crashed when not set - added a check for the call fuinction being callable - added a check for the argument being a typle.
2010-08-09poll() as a python '@staticmethod' was too limiting and didnt allow useful ↵Campbell Barton
base class poll functions in many cases. now rna functions that dont have a 'self' are automatically assumed '@classmethods'. de-duplicated poll functions and made some minor tweaks too.
2010-08-09remove py2.x compat check for class registration.Campbell Barton
2010-08-09[#23228] Play rendered animation is not workingCampbell Barton
own recent commit missed renaming expand -> abspath
2010-08-08Bugfix: [#23149] Showing cache instead of rendering with the VSEPeter Schlaile
2010-08-08== docs ==Luca Bonavita
Changing " **type** " into "\n\n:type: " in Mathutils, to have like "type: float" in its own line.
2010-08-08This fixes: Peter Schlaile
[#20884] SEQUENCER EFFECT: Animating Speed Control Opacity has no effect [#21308] SEQUENCER EFFECT: Glow ignores Opacity setting
2010-08-08== Sequencer ==Peter Schlaile
This fixes: [#23184] Problems with speed control effect strip in the video sequence editor Also: got rid of tstripdata caches in DNA. Fixes some potential crashes in SEQ_IMAGE rendering (s_elem wasn't checked for NULL).
2010-08-08display addons sorted by category then name (remove old commented code which ↵Campbell Barton
loaded the modules for real)
2010-08-08remove unused includesCampbell Barton
2010-08-08remove unused includesCampbell Barton
2010-08-08remove unused includesCampbell Barton
2010-08-08remove unused includesCampbell Barton
2010-08-08remove unused includes from editors/space_*Campbell Barton
2010-08-07== docs ==Luca Bonavita
Added some docs mainly in bpy.types.UILayout.html, descriptions by Florian Meyer (testscreenings), thanks.
2010-08-07Experemental XML UI, define panels/menus/headers which load at startup like ↵Campbell Barton
python scripts. - 2 panels implimented in properties_render_test.xml (Render Dimensions and Stamp) - only enabled in debug mode. - poll() functions are not supported yet. - as stated above experemental, we'll see if this is at all useful, remove if not. - XML could be replaced with JSON or YAML.
2010-08-07Bugfix #23216: Memory leak when removing Fcurve from actionJoshua Leung
Missing call to free_fcurve()
2010-08-07bugfix [#23211] "with" keyword in text editor not highlighted [Patch attatchedCampbell Barton
by Justin Dailey (dail) with minor edit
2010-08-07netrender: fix poll methodsMartin Poirier
2010-08-06after discussion with brecht reverting this commit, will pass on feedback to ↵Tom Musgrove
the patch author
2010-08-06Fix #23210: displace modifier strength only had 2 decimal places,Brecht Van Lommel
was inconsistent.
2010-08-06Fix #23208: REGION_DRAW_POST_PIXEL callbacks only work in 3d view andBrecht Van Lommel
image editor, but there's no reason they wouldn't work in all regions, so moved the function call.
2010-08-06Fix #23209: there was no access yet to region data from RNA, there's noBrecht Van Lommel
generic system for it yet, but for now already return it for the 3D view since that is the only space that uses it.
2010-08-06Committing Konrads GLSL preview of bumpmapping, now we no longer have the ↵Tom Musgrove
bizarre situation of being able to view the changes of the normal map but not of regular bump mapping
2010-08-06Fix #22961: linked duplicate meshes are all displayed in edit mode whenBrecht Van Lommel
one of them is in edit mode. This doesn't give correct results for modifiers though, there was already a check to disable this when are shape keys, so now it is also disabled if either of the meshes has modifiers.
2010-08-06Fix a duplicate memory free in fluid export code, as part of bug #22734.Brecht Van Lommel
2010-08-06Fix missing texture face panel.Brecht Van Lommel
2010-08-06Fix #23167: halo "texture" option did not take disabling of the textureBrecht Van Lommel
into account.
2010-08-06Fix #23196: running python scripts didn't do an undo push. Now it doesBrecht Van Lommel
means you can easily undo what the script did, and keeps the undo stack up to date. Maybe sometimes it's not necessary, but I think it's reasonable to do this always.
2010-08-06reverted r31104 with recent commit.Campbell Barton
2010-08-06Fix #23204: render disconnected hair with child particles could crash.Brecht Van Lommel
2010-08-06remove narrow ui featureCampbell Barton
- re-arranged UI in a way that gave far too much vert scrolling. - was added all over for simple things like making text="", layout engine should handle this. - Ton and Brecht are ok with removing this now. Ton would like to work on the layout engine to make it better support these cases.