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-03-21Fix syntax for ID keyword.Guillermo S. Romero
2010-03-20- submit docs now uses the new dialog with an OK buttonCampbell Barton
- submitting operator docs sent them twice.
2010-03-20merge own commits into render branch into trunk since 27560Campbell Barton
27562, 27570, 27571, 27574, 27576, 27577, 27579, 27590, 27591, 27594, 27595, 27596, 27599, 27605, 27611, 27612, 27613, 27614, 27623
2010-03-20Operator name improvements in select menuDaniel Salazar
2010-03-19Adding Non Manifold to select menu in edit mode for vertex and/or edgeDaniel Salazar
select mode
2010-03-18Fixed a crash switching to brush texture nodesMatt Ebb
Also removed some python code to check for node materials within the material and texture properties. It seems to go fine without it, and this should be handled by context instead.
2010-03-18Sound bugfixes:Brecht Van Lommel
* sound file path was not displayed in sequencer panel. * sound strip with relative paths would stop working after undo. (commit 27575 by Brecht from render25 branch)
2010-03-17Fix [#21553] Re-Projection just opening the image editor but not the image.Matt Ebb
Campbell please check/beautify if you like, but it works properly on OS X, either opening Preview with the 'open' command or Photoshop, when the path is set in user preferences.
2010-03-17Fix [#21329] Extrude of single vertex constrainedMatt Ebb
2010-03-17Fix [#21114] Graphical cursor displayed in wrong position when switching to ↵Matt Ebb
local ortho.
2010-03-17"Fill deformed" option for 2D curvesSergey Sharybin
Add new option named "Fill deformed". If this option is switched on. 2D curve will be first deformed by modifiers and only then be filled with faces.
2010-03-16no need to include the setting names in enum itemsBrecht Van Lommel
(commit 27539 by Campbell from render25 branch)
2010-03-16option to lock alpha while projection painting.Brecht Van Lommel
(commit 27538 by Campbell from render25 branch)
2010-03-16transform marker sync for extend and grab is back.Brecht Van Lommel
(commit 27537 by Campbell from render25 branch)
2010-03-16no need to set flat shading for faces manuallyBrecht Van Lommel
(commit 27534 by Campbell from render25 branch)
2010-03-16draw option to only display what is rendered, used for sequencer, opengl ↵Brecht Van Lommel
drawing by default. since we use preview renders a lot the empties & armatures can get in the way also. (commit 27511 by Campbell from render25 branch)
2010-03-16made re-project UI less confusingBrecht Van Lommel
(commit 27457 by Campbell from render25 branch)
2010-03-16minor changes to rna names for consistancyBrecht Van Lommel
(commit 27445 by Campbell from render25 branch)
2010-03-16change the scene opengl sequence rendering to be a global option with ↵Brecht Van Lommel
rendering and scrubbing settings. still need to do a do_versions for this to work right without changing settings. (commit 27442 by Campbell from render25 branch)
2010-03-16- menu for selecting add scenes for the sequencer.Brecht Van Lommel
- update internal 'btempdir' from userprefs on changing and initializing the temp dir. - add sequence strip operators nolonger require the sequence view to be active (better for automation). (commit 27434 by Campbell from render25 branch)
2010-03-16fix for nasty bug where registering properties would register them in the ↵Brecht Van Lommel
parent classes SRNA, made for confusing rigify args turning up in add sequencer adding collection. (commit 27433 by Campbell from render25 branch)
2010-03-16New "Maintain Volume" constraint. When attached to a bone, you specify a ↵Roland Hess
"free" axis. Upon scaling, this free axis scales normally, but the constraint forces the other two axes to adjust themselves appropriately so that overall bone volume is maintained. So, setting "Y" as the free axis (the default) creates a bone that automatically squashes and stretches when scaling. Thanks to Aligorith, Fweeb, Cessen and others for the feedback.
2010-03-16Keying Set Fixes:Joshua Leung
* 'Export Keying Set' operator works again - a change in the previous commit broke the created code * Relative Keying Sets don't get their paths shown * Keying Set paths show options for inserting keyframes too now --- Another attempt at fixing compile troubles, and removed some commented out + obsolete stuff.
2010-03-16== Massive Keying Sets Recode ==Joshua Leung
After a few days of wrong turns and learning the finer points of RNA-type-subclassing the hard way, this commit finally presents a refactored version of the Keying Sets system (now version 2) based on some requirements from Cessen. For a more thorough discussion of this commit, see http://sites.google.com/site/aligorith/keyingsets_2.pdf?attredirects=0&d=1 ------ The main highlight of this refactor is that relative Keying Sets have now been recoded so that Python callbacks are run to generate the Keying Set's list of paths everytime the Keying Set is used (to insert or delete keyframes), allowing complex heuristics to be used to determine whether a property gets keyframed based on the current context. These checks may include checking on selection status of related entities, or transform locks. Built-In KeyingSets have also been recoded, and moved from C and out into Python. These are now coded as Relative Keying Sets, and can to some extent serve as basis for adding new relative Keying Sets. However, these have mostly been coded in a slightly 'modular' way which may be confusing for those not so familiar with Python in general. A usable template will be added soon for more general usage. Keyframing settings (i.e. 'visual', 'needed') can now be specified on a per-path basis now, which is especially useful for Absolute Keying Sets, where control over this is often beneficial. Most of the places where Auto-Keyframing is performed have been tidied up for consistency. I'm sure quite a few issues still exist there, but these I'll clean up over the next few days.
2010-03-16Play Back Rendered Animation operator was left out of Screen->Render ↵Matt Ebb
operator name change
2010-03-15pep8 warningsCampbell Barton
2010-03-15more addon UI cleanupCampbell Barton
2010-03-14cleanup for addon python internals, fix filtering bug.Campbell Barton
2010-03-14user preference to disable the splash screenCampbell Barton
2010-03-14Addons:Thomas Dinges
Some code changes: * Every Add-On now needs a dictionary with several infos, which are then displayed in the Blender UI and/or are used internally. Example: bl_addon_info = {'name': 'Measure panel', 'author': 'Buerbaum Martin (Pontiac)', 'version': '0.6.3', 'blender': '2.5.2', 'location': 'View3D > Properties > Measure', 'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Panel_Measure', 'category' : 'UI'} Unfinished/Not working yet * The 'blender' tag is compared with the internal version number, it raises an error if the add-on was written for a newer Blender version. * The 'category' tag will be added to the filter, so the add-ons can be searched/filtered.
2010-03-14Fixing a part of [#21516]. Curve preset menu doesn't appear to be a menu.Thomas Dinges
Converted to Operator Buttons. Fits well into the toolbar, lets hope, we won't get more presets. ;)
2010-03-14Bugfix #21565: Scale keys from DopeSheet transform menu causes crashJoshua Leung
The operators in this menu were using the wrong operators!
2010-03-14enable basic soft body object options forJens Ole Wund
soft body aware objects as there are lattices and curves since this is foreign terrain for me .. please check
2010-03-13Add-Ons:Thomas Dinges
*Added location value (for infos like "View3D > Properties > Measure")
2010-03-13Fix [#21351] PROPERTIES: Resolution changes based solely on changing Matt Ebb
encoding format Bypassed existing hardcoded ffmpeg presets that executed when changing format, replaced with bpy presets. Leaving old code there for now, haven't got python/rna access to the ffmpeg id properties.. Anyone know how to do this? Code snippets here: http://www.pasteall.org/11657/c
2010-03-13Patch [#21539] Improved organization of add-ons panel by Bart Crouch ↵Thomas Dinges
(crouch), with some UI code cleanup by myself. This patch adds following features: - Filter Add-ons by a category. - Search Add-ons by Name and Author. - Possibility to expand an Add-on, displaying more information like author, version, description, etc. - Warns when a user wants to enable a script that was written for a newer version of blender
2010-03-12Fix #21224, "FBX export has object translation issues".Arystanbek Dyussenov
Reversed the order of all matrix multiplications to confirm to API change.
2010-03-12- Hhighlight active nurb in edit modeSergey Sharybin
- Replaced hardcoded nurbcol array with theme colors - Send notification in duplicate curve operator (this operator could reset/change active nurb) - Edge seam color added to the user preferences dialog
2010-03-12netrender: Martin Poirier
sensible timeout on connection attempt fix for operator api change
2010-03-12Changed NTSC and PAL to be consistent with the ITU BT 601 spec, other ↵Tom Musgrove
variations can be done as custom if the user wants it.
2010-03-11Fix #21550, "FBX Exporter doesn't make faces". Exporter incorrectly accessed ↵Arystanbek Dyussenov
vertex indices.
2010-03-11Restored Environment mapsMatt Ebb
* Fixed up RNA and UI * Brought back 'Save' and 'Clear' operators (in the little triangle menu in environment map properties) * While I was at it, noticed that environment maps were only using 8bit colour, changed it to use full 32bit float instead for proper HDR colour etc, so environment map reflections have the correct colour range --> http://mke3.net/blender/devel/2.5/env_hdr.jpg This fixes [#20904] Environment Map does not render; also missing panel
2010-03-11A number of common rendering presets, looked up and added by Simon Rainerson Tom Musgrove
2010-03-10Add COMPAT_ENGINES mechanism to lamp panels so other render engines can showBrecht Van Lommel
different panels here.
2010-03-10Fix [#21514] Emission Col slider ignores checkboxMatt Ebb
2010-03-09camera override option for scene strips.Campbell Barton
2010-03-09mtex buffer copy & paste back for materials.Campbell Barton
2010-03-09improve brush size keys so they dont change by 20 each time (bad for small ↵Campbell Barton
brushes), added wm.context_scale_int() operator.
2010-03-09option to use offscreen opengl drawing with the sequencer scene strips.Campbell Barton
warning, uses bad level call, will need to resolve very very soon!
2010-03-08image re-project now uses offscreen render function and has input for render ↵Campbell Barton
size. unrelated changes that ended up being more trouble to commit separate... - removed BLI_split_dirfile(), was nasty, occasionaly modifying the source string, it could create directories and used the $CWD in some cases. was only used in 2 places in filesel.c, if this gives problems can address without bringing back this function. renamed BLI_split_dirfile_basic --> BLI_split_dirfile - view3d_operator_needs_opengl was being called for offscreen render when it wasnt needed.