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
2009-11-21only show normal snap option in object modeCampbell Barton
2009-11-21id properties for editbones and pose channels were not being freed in a ↵Campbell Barton
number of cases, added free_pose_channel(pchan) and use this in all places that free pose bones
2009-11-21pep8 cleanup & default select axis to negative (artist requst, make sense if ↵Campbell Barton
you model the RHS and spend most time looping at the models front)
2009-11-21* Made 'set active' vgroup menu fold out, rather than pop up newMatt Ebb
2009-11-21Nodes Editor: Restored 'Show Cyclic Dependencies' Operator (CKEY)Joshua Leung
2009-11-21Node Editor - More Cleanups (Reshuffling):Joshua Leung
- removing duplicate chunks of code -> hide unused sockets now works - moving some functions to the files that they get called from -> view all/home - made duplicate a macro operator like the other places that work like this, eliminating the unnecessary transform-related property there still - removed a few chunks of unused code
2009-11-21left in printCampbell Barton
2009-11-20use a metaclass to have operator attributes register and display in the ↵Campbell Barton
order defined.
2009-11-20use negative boolean option no_zbuf -> use_zbufCampbell Barton
2009-11-20* More small modifier improvements by nudelZ.Thomas Dinges
* Code cleanup.
2009-11-20RNA doc update. the "no_zbuf" flag in Defocus node was incorrectly doc'ed as ↵Roland Hess
"Use Zbuffer" when it really should be "Ignore Zbuffer".
2009-11-20Improvements to tab -> spaces conversions and use in the Text Editor:Willian Padovani Germano
- A single undo removes all 4 inserted spaces at once. - Indent and unindent now use spaces. The number of spaces is still hardcoded as 4. PS: Campbell sharing a couple of the minor todo's with me, thanks :).
2009-11-20Modifier Layout improvements (single column and normal) by nudelZ. Thomas Dinges
2009-11-20- dont define properties in the global script namespaceCampbell Barton
- set __file__ when running scripts (filename or textblock name)
2009-11-20Fix for unitialized variable and resulting render artifactsBrecht Van Lommel
when setting project x/y/z to none with a procedural texture.
2009-11-20option to have scripts run on startup for per blendfile UI'sCampbell Barton
2009-11-20Small update to render properties.William Reynish
-Single column UI for Encoding panel -Removed bad align in performance panel -Made Quicktime's Quality percentage a slider
2009-11-20Armature Editing Fixes:Joshua Leung
* Restored WKEY Specials Menu. Had a few problems initially with the name of the menu being 1 character too long; this needs more comprehensive API warnings * Made Extrude Forked work again as a macro operator. Added another extrude macro for this, but ideally would have worked with a single macro + setting properties for that macro (can't do so due to bug 19733)
2009-11-20Quicktime-qtkit : encoding settings now in blender ui (encoding panel)Damien Plisson
- added "QuicktimeCodecSettings" struct in DNA - old "QuicktimeCodecData" opaque struct is nowdeprecated (read only use when QuicktimeCodecSettings is not set) - fixed small bug when importing deep color movies Note that you may need Final Cut Pro installed to be able to use the DVCPRO HD codecs
2009-11-20Attempted fix for #19870 - Crash on Shift Numpad 1 based on the backtrace ↵Joshua Leung
http://www.pasteall.org/9114
2009-11-20Bugfix #19923: UVImage editor gets stuck in move/zoom modeJoshua Leung
2009-11-20- dir() now works for collection functionsCampbell Barton
- group.objects.link/unlink use exceptions rather then return values - scene.add_object/remove_object --> scene.objects.link/unlink
2009-11-20More Node Editor Fixups:Joshua Leung
* Restored Mute and Hide Operators, M and H keys respectively * Restored Make Links Operator (F). However, I can't figure out how to set the sockets so that this can be used * Made Alt-RMB the new hotkey for breaking links by dragging, since Alt-LMB was taken for panning already
2009-11-20* Added a quick little weight group 'Levels' operator, can interactively ↵Matt Ebb
tweak overall weight value offset and gain in weight paint mode.
2009-11-20Node Editor: Various usability and code tidyupsJoshua Leung
* Fixed a nasty bug which meant that it was impossible to set an active node. Was caused by ntreeCopyTree() getting called when compo updates were done and clearing the active flags. The active flag clearing is only really needed for the "internal_select" case which is only used for duplicating selected nodes (from Shift-D duplicate). * Recoded click-selection code. Was a mess of old code, bad exceptions from the old code half ported, duplicate operators, unnecessary flags/modes. * Fixed bug #19927: compositing node groups can't be access via "tab" or ungrouped via "alt+g". Was probably related to the active group not being able to be set. * Made resizing nodes work again. Again, this was due to the active node bug. * Made adding a new group with Ctrl-G correctly update the views
2009-11-20Simpler default smooth brush curve preset - less points, easier to tweakMatt Ebb
2009-11-20* Removed tablet pressure sensitive number field widget scrubbing, wasn't ↵Matt Ebb
that useful and I suspect it was the cause of a few bugs * Added tablet pressure support (size/strength) for weight paint and vertex paint * Added tablet eraser support for weight paint and vertex paint (inverts the effect of the current tool) * Removed the old 'soft' option, now weight paint and vertex paint use the influence curve * Made the default brush use a smooth influence curve, rather than sharp
2009-11-20pep8 compliance, also removed use of exec() for netrender module importingCampbell Barton
2009-11-20Vertex Groups Operators:Joshua Leung
* Added Ctrl-G hotkey back for displaying a menu showing the available Vertex Group operators * Added descriptions for a few Vertex Group operators. The difference between "normalize" and "clean" isn't that obvious from just reading the code, so perhaps some attention to this is needed.
2009-11-19MSVC 9 projectfilesAndrea Weikert
* re-enabled collada now with hopefully correct debug libs * python API IDProps added
2009-11-19Support for grab cursor in macro system (and vice versa).Martin Poirier
This may result in cursor being grabbed twice (though we don't have any macro that can do this at the moment). If this is a problem, a check can be added.
2009-11-19missing check for the active objectCampbell Barton
2009-11-19- StructRNA's __dir__ was missing members from its classes __dict__Campbell Barton
- property editor can now set button min/max values and edit the tooltip - custom props tooltips were not displayed - cleanup the property UI - remove hacks that were used for editing (edit is now a popup operator) - object.children was broken
2009-11-19operators were copying the properties from the rna operator into the class ↵Campbell Barton
instance. however this meant the invoke function could not modify properties for exec to use (unless it called exec directly after) since the popup for eg would re-instance the python class each time. now use the operator properties directly through rna without an automatic copy. now an operator attribute is accessed like this... self.path --> self.properties.path
2009-11-19idprop.get(key, default=None)Campbell Barton
matching pythons dict.get() removed checks for a failed PyObject_New(), if python cant make a new object your probably going to crash anyway.
2009-11-19operator properties were not the correct typeCampbell Barton
2009-11-19Indentation fix. :/ Thomas Dinges
2009-11-19* Added Shift+Space hotkey for "Area Full Screen" as it is in 2.49.Thomas Dinges
Request by Pablo (venomgfx). :)
2009-11-19added 'hidden' option for python defined rna props, means py operators can ↵Campbell Barton
use hidden properties so the popup wont show improved error message when bad args are given to propertyRNA funcs
2009-11-19Renamed "col2" to "wide_ui" which is more meaningful. Thomas Dinges
2009-11-19* Small Layout fixes.Thomas Dinges
* Single Layout for Softbody Panels.
2009-11-19Single Column layout for Fields, Smoke, Cloth and Fluids.Thomas Dinges
Patch by nudelZ.
2009-11-19correcting ID property list was incorrect on portingCampbell Barton
2009-11-19- remove CPPFLAG XP_UNIX from CMake, Scons and Irix make, checked our own ↵Campbell Barton
code and /usr/include, its only used in our netscape plugin. - CMake on unix default OpenMP to enabled. - Scons on linux default OpenMP to enabled. - copying python is slow, for scons only copy if the directory has not been created.
2009-11-19missed render border in modal keymapCampbell Barton
2009-11-19Revert toolbar shading commit.William Reynish
2009-11-19Drag'n'drop : moved "setAcceptDragOperation" functions at window levelDamien Plisson
GHOST/Cocoa : changed strings encoding to isoLatin1 (was UTF-8)
2009-11-19* Fix for texture->image node not workingMatt Ebb
+ a few cleanups
2009-11-19* Changed scroll bar scale handles back to scaling from either side, rather ↵Matt Ebb
than to the center (ctrl-drag or mouse wheel works fine for that)
2009-11-19* Fix for RMB keyframe/data path/etc operators not working in sub-regions, ↵Matt Ebb
was getting the wrong region context to operate on.