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
2012-03-26Patch: [#30652] Influence slider for Lattice ModifierThomas Dinges
* This patch adds a influence slider for the lattice modifier, which affects the strength of the deformation. Patch by Patrick Boelens (senshi), thanks a lot!
2012-03-24style cleanup: pep8, indentationCampbell Barton
2012-03-24Adding back delete edge loop to delete menuDaniel Salazar
2012-03-23bmesh editmode - split dissolve into its own menu. mesh delete code was ↵Campbell Barton
getting quite messy and mixed in too much different functionality just to add in same menu. Now use a pu menu for delete key which can call different ops.
2012-03-23edge split bmesh operator wasnt accessible (defined but not used), for some ↵Campbell Barton
reason it had a 'numcuts' option. add edge split to mesh edge menu.
2012-03-23more face -> tessface editsCampbell Barton
2012-03-23last commit broke cycles, also add BMESH_TODO's for python scripts that need ↵Campbell Barton
upgrading.
2012-03-23rna/python api change: rename Mesh.faces --> tessfaces, since existing ↵Campbell Barton
scripts are using this to modify the mesh and its confusing that the edits are not kept. This also makes it clearer that the faces are for tessellated results only. Added a section on the Gotcha's about upgrading scripts, the pros and cons of MeshTessFace/MeshPoly/BMFace. and spesifically how to upgrade importers and exporters for 2.63+.
2012-03-23patch [#30620] Wiki Quick Hack: Make Tooltip Text Colour ThemeableCampbell Barton
from luke frisken (lfrisken), with some edits. some tooltip colors weren't visible with different backgrounds, now the base tooltip color is used and tinted for python/alert/shortcuts etc. the tint colors are still hard coded.
2012-03-22Fix [#30614] (some Display settings are uneeded for non-geometry/material ↵Bastien Montagne
object types, and armature have no boundbox). This commit: * Removes the Wire and Color options from the UI for all object types but meshes, curves/surfaces/texts, and metas. * Adds a basic bounding box drawing (and computing) for armatures.
2012-03-22Fix #30491: Not Updating Scene LengthSergey Sharybin
(also fixes special request from Ian for Mango) Added operator to update actual content length of all selected strips. Can be useful for scenes and movies as well after doing making changes to scene/movie. Can be improved further to deal better with cases when strip has got effect and it's get reshuffled because of overlapping after changing it's length.
2012-03-22Quick Mango request: Adjustable contrast/intensity for unselected F-Curves inJoshua Leung
Graph Editor Under User Preferences -> Editing, there's a new setting "F-Curve Visibility" which controls the how much F-Curves blend in with the background colour. Increasing this value makes F-Curves stand out more, at the expense of making it less obvious which F-Curve is active.
2012-03-22fix for python called operators getting/setting the operator last used ↵Campbell Barton
state, also set object.vertex_group_assign.new to false when accessed from blenders UI
2012-03-22fix [#30623] user-defined render presets bugCampbell Barton
this report exposed multiple bugs in blender when using a non utf8 compatible home directory. - bpy.utils.script_paths() would crash when homedir wasn't utf8 (reported bug) - PyC_DefaultNameSpace() - would raise an error when running when __file__ was non utf8. - preset filepath property was not set to accept non utf8. - bpy.paths.display_name would raise an error on non utf8 paths, (used for preset draw)
2012-03-21== Sequencer ==Peter Schlaile
This adds movieclip input support to the sequencer, thereby making undistorted and stabilized footage available without a seperate render step. Also: removes some old cruft code from the sequencer: * new_tstripdata wasn't used anymore * StripElems were allocated for SCENE strips on full length, wasting memory Added a comment, that hopefully makes things a little bit clearer: StripElems are *only* usefull for MOVIE + IMAGE strips for all other strip types one can set this pointer to NULL. (If that should cause otherwise problems, then the code that doesn't check for NULL is to blame!)
2012-03-21rename ngon tessellate function.Campbell Barton
2012-03-21patch from Richard Shaw, exclude ffmpeg files when its disabled.Campbell Barton
also fix for incorrect text in mesh specials menu - Select Inverse was called (De)Select All.
2012-03-21Patch #30611: grey out bone show wireframe option if no custom shape is set,Brecht Van Lommel
since it only has an effect in that case. Patch by Sebastian Nell.
2012-03-20Some advanced particle rotation modes and reorganization of the rotation panel:Janne Karhu
- More angular velocity modes to support creative effects. - Renamed "Initial Rotation" to "Initial Orientation" to better reflect the functionality - Renamed "Spin" angular velocity mode to "Velocity". - Organized the rotation panel a bit better. - Also some better names and tooltips for the different rotation values.
2012-03-20patch [#30595] Wiki Quick Hacks: Make Tooltip Background Colour ThemeableCampbell Barton
from luke frisken (lfrisken)
2012-03-19Grmml, dummy typo in previous UI message-fix commit… :/Bastien Montagne
2012-03-19bmesh: inset tool, access from face menu (Ctrl+F)Campbell Barton
- Even option (like solidify even option) - Relative option (insets based on lengths of surrounding edges) TODO: merge tares when 2+ face corners meet but don't form a contiguous region.
2012-03-19"Fix" for [#30098] Particle rotation wrong / explode modifierJanne Karhu
- The main problem was that in order to be accurate all particle rotations have to be calculated incrementally so the only working solution is to store rotations to the point cache (previously this was only done for dynamic rotations). This can nearly double the point cache size so it's not ideal to have this as a default as in many cases you don't care about particle rotations. - Particle rotation panel now has a new "enable" checkbox that enables rotation calculations and the storing of rotations to point cache. - Old files will have rotations enabled via do_versions so that in the worst case old files will only get bigger point caches, but no sudden loss of particle rotations.
2012-03-19lattice & UV 'select all' menu items were missing action assignment.Campbell Barton
2012-03-19Grumph, more fixes in this Select menu (Invert had default op name for ↵Bastien Montagne
metaball and particules...). Also fixed "(De)select All" name of particule op.
2012-03-18Fix [#30588] "select/deselect all"-menu for lattice doesn't default to TOGGLEBastien Montagne
2012-03-18Re-enable the clay strips sculpt brush.Nicholas Bishop
Most of the tool code was already in place, only significant functionality change is that anchored stroke works now. TODO: * Gave it a new icon, but could use a better one * Default .blend should have a clay strips brush
2012-03-17UI messages: unification of select/deselect stuff.Bastien Montagne
Previously we had three versions, Select/Deselect, Select or Deselect, and (De)select, choosen the third (shortest) one for now.
2012-03-17Minor UI messages fixes, and enabling i18n for all modifier_setError() error ↵Bastien Montagne
messages.
2012-03-17add select invert for latticeCampbell Barton
2012-03-16Patch by Psy-Fi + my minor changesAlexander Kuznetsov
Adds conformation on exit for windows. Needs to be enabled in user perf. Tried to edit blender.exe.manifest for more modern dialog look, but didn't work out.
2012-03-16py api:Campbell Barton
modify bpy.path.display_name_from_filepath() to accept bytes
2012-03-16bmesh: being back bevel modifier from 2.62 stable.Campbell Barton
this is no big improvement but at least its not a regression. using the new operator for the bevel modifier can be enabled again be uncommenting a define.
2012-03-152.6 User Interface:Thomas Dinges
* New Icons for the File menu, patch by David Klein (cgeffex). Thanks a lot! * This patch also adds a new icon for the use_filter_text in Filebrowser.
2012-03-15Move brush tool/paint-mode from toolbar to brush menu.Nicholas Bishop
2012-03-15Use Brush.sculpt_capabilities in Python UI code for sculpt toolbar.Nicholas Bishop
2012-03-15Un-abbreviate 'use_space_atten' (Brush RNA) to 'use_space_attenuation'.Nicholas Bishop
2012-03-15revert r44887, changes were OK but caused too many problems, better do this ↵Campbell Barton
as a smaller patch. sphinx_doc_gen.sh broke building docs - - examples/ svn directory was being removed since it assumed an out-of-source build. - include references somehow stopped working (didnt find why). also fixed an unrelated error with building docs in object_utils.py
2012-03-15Fix #30549: Error adding mesh object to sceneSergey Sharybin
2012-03-14Changes to python-defined add object operators:Sergey Sharybin
- Reset rotation value when toggling Align to View property which correctly re-alignes object on continuous property toggling and fixes issue #30510: [2.62] Add Mesh - Torus - "Align to View" cannot be switched back when toggling off - Moves all generic object-add properties into a helper function which might be easily re-used.
2012-03-14Add partial visibility operator including keymaps and menu items.Nicholas Bishop
Uses HKEY for border hide, CTRL+HKEY for border show, and ALT+HKEY for show all. Documentation: http://wiki.blender.org/index.php/User:Nicholasbishop/PartialVisibility Code review: http://codereview.appspot.com/5695043
2012-03-11bmesh py api: change .from_mesh() / .to_mesh() to be class methods of BMesh ↵Campbell Barton
rather than functions in the module. added example script which converts a mesh to a bmesh, edits and converts back again.
2012-03-11[#30373] Which part to snap in volume snapping is removedMartin Poirier
By Bug reported by Pep Ribal Also fixed an object mode bug with volume snapping and made it compatible with the edit mode "Snap on self" option
2012-03-112.6 UI:Thomas Dinges
World Context: * Made world id block wider * Don't show texture user when Cycles engine is used Other: * Change Dopesheet > DopeSheet in User Preferences Theme section for consistency.
2012-03-112.6 UI:Thomas Dinges
* Hide Modifier and Contraint Panel header, this gives a bit space. As it's the only panel in these context tabs it does not make sense to close them anyways.
2012-03-09Tweaks for typos in the Keying Set descriptions commitJoshua Leung
2012-03-08Fix #30435: 2.62 Torus Batch building "Bug" or A Experimental Feature?Sergey Sharybin
Python-defined primitives used to be added to all visible layers instead of adding to active scene layer as it happens with C-defined primitives.
2012-03-08Fixing several issues with keyingsets:Bastien Montagne
*Add a new idname to keyingsets, keeping name as label-only (using same string for both made lookup fail when using i18n other than english, as it tried to compare an untranslated static string id against a translated RNA name). Also adding a description string (can be helpful with custom keyingsets, imho). *Fixed a few other bugs related to that area (namely, you can’t deselect current keyingset from the shift-ctrl-alt-I popup menu, and insert/delete key ops were using a rather strange way to get chosen custom keyingset…). *Fixed UI code so that it always uses (RNA) enum, and simplified menu-creation code.
2012-03-08Fix #30464: Confusing lack of label for Fluid "use"Sergey Sharybin
It was indeed not clear at all what that label-less check box does. Move it to next row (to prevent fluid type menu be too narrow) and use label default for it. Also don't create second column which is empty for outflow fluid type.
2012-03-08style cleanup: pep8 + picky editsCampbell Barton