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-20option to have scripts run on startup for per blendfile UI'sCampbell Barton
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-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-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-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-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-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.
2009-11-19* Added control and animation of sound volume of sequence sound strips ↵Matt Ebb
(found in properties pane) To insert keys, use I key while hovering over the button for now, rmb clicking on the property to insert a key doesn't work (general bug for all regions except property editor - will investigate). Doesn't convert over from old fac0 ipos on opening old files though for the time being. * Made sequence strip names unique while I was at it, to allow strip properties to be animated properly.
2009-11-19Sequencer UI: Sequencer now uses the standard timeline cursor instead of a ↵Joshua Leung
hacky custom one that used a hardcoded colour
2009-11-19Bugfix:Joshua Leung
Adding drivers to single values was broken.
2009-11-19Fix crash on Windows when clicking anywhere in a window. Cursor grabbing ↵Joshua Leung
code was missing checks for invalid tablet data.
2009-11-18ID properties that are displayed via RNA can now define their own UI settings,Campbell Barton
only implimented min/max precision & step. at the moment there is no way to edit these other then via python example of setting UI limits... >>> C.object['foo'] = 0.5 >>> C.object['_RNA_UI'] = {'foo': {'step': 0.5, 'soft_max': 10.0, 'soft_min': 0.0, 'precision': 2, 'description': 'Some setting'}} Also fixed typo's: precission -> precision
2009-11-18Quicktime-cocoa : fix file busy issue when rendering a second time with ↵Damien Plisson
quicktime export
2009-11-18SVN maintenance.Guillermo S. Romero
2009-11-18Made toolbar buttons slightly brighter, to make them stand out from the ↵William Reynish
background more.
2009-11-18New B.Blend.William Reynish
Fixes an issue with the clipping that was set back to 0.01 Made it 0.1 once again as this fixes Z buffer issues. Put the Item panel at the top in the n-key region Removed Properties and Quad View Screens Cleaned up UV Editing Screen, removing Properties
2009-11-18Custom Ratio mouse input didn't check for initialization properly, which ↵Martin Poirier
could lead to NaN values with edge slide. Also adding missing modal keymaps for some transform operators.
2009-11-18Correctly detect and use modal keymaps in macrosMartin Poirier
2009-11-18Disable continuous grab during tablet use (fixing tablet jerkiness issues)Damien Plisson
2009-11-18Quicktime (non cocoa) crash upon export temporary fixDamien Plisson
Removed the pop up of the codec settings dialog box that was causing the crash, as it was called from the render thread (and not the main one). So qt export settings are now blocked on default settings: codec=jpeg, quality=max, bitrate=5MBps Complete fix will be done by replacing this dialog box by "encoding" settings in the render panel.
2009-11-18Fix snap tooltip.Martin Poirier
Make it a bit more generic to cover Ctrl hold or toggle.
2009-11-18scons update to enable build with QTKit (Cocoa Quicktime)Damien Plisson
Thx Jens Verwiebe for the patch
2009-11-18Quicktime for Cocoa : export partDamien Plisson
Following the quicktime import port, here is the movie export feature. The codec selection remains to be implemented in the ui (render panel). So the settings are now blocked on codec=jpeg, quality=max.
2009-11-18own mistake meant bones could not drive eachother.Campbell Barton
2009-11-18Revert of ID Notifier, as requested by Matt. Thomas Dinges
2009-11-18bone & object properties editing was broken.Campbell Barton
2009-11-18Durian request: ClothDaniel Genrich
* structural can be set to 0 * pre-roll now available through GUI and works like following: a) Pre rolled frames are NOT cached b) reset cache + cloth on pre roll setting change
2009-11-18fix for own error in 24623, removed a memfree call,Campbell Barton
printed lots of errors like this one exit dynstr_cstring len: 24 0x54c4cb0
2009-11-18fix for memory leak, use Key Errors for pyrna getitem access & idpropsCampbell Barton
2009-11-18rename pose_channels to bonesCampbell Barton
was: object.pose.pose_channels["Bone"] now: object.pose.bones["Bone"]