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
2013-01-21add an influence slider to mesh cache.Campbell Barton
2013-01-21Usual minor UI messages fixes...Bastien Montagne
2013-01-21mesh-cache deform modifier,Campbell Barton
supports MDD and PC2 formats. see wiki docs: http://wiki.blender.org/index.php/Doc:2.6/Manual/Modifiers/Deform/Mesh_Cache
2013-01-21Add (vertex-only) Bevel to Mesh > Vertex menu.Howard Trickey
2013-01-21Added gsoc-2012 collada improvements from bratwurst branchGaia Clary
2013-01-21Fix #33899: Maya keymap/custom keymap selection issuesSergey Sharybin
Switch selection from Release to Click, so releasing mouse button after transform confirmation wouldn't trigger selection operator. However, needed to disable old Click behavior which used to deselect everything if click happened outside of any object. It wad bad way to do such a behavior and shall be re-think and solved in a better way.
2013-01-21Updating icons to 2.5.08 (see [#33448])Joshua Leung
Thanks Wolter van der Velde for adding the (most of) the missing Force Field icons
2013-01-21Patch [#33926] Menu separators to group the items on Specials MenuJoshua Leung
Submitted by: Harley Acheson (harley) This patch adds separators to group items in the Special Menu in EditMode. Order of items is untouched.
2013-01-21Bugfix [#33946] Bake Action fails in SVN for ObjectsJoshua Leung
The problems here were caused by a cleanup commit (r. 53369). BTW, the code here is pretty convoluted mess.
2013-01-18move draw all edges into the object settings (object panel), makes more ↵Campbell Barton
sense here since its next to draw extra wire
2013-01-17fix for arrow keys being reversed in the snap menu (Ctrl+Shift+Tab)Campbell Barton
also - when expanding rna enums into existing menus - don't nest inside a row/column.
2013-01-17Release Cycle:Thomas Dinges
* Readme and release log links for the Blender 2.66 release.
2013-01-17show a title in menus triggered by WM_OT_context_menu_enum, also show an ↵Campbell Barton
icon when available.
2013-01-16revert previous commit, the properties here are confusing since there are 2 ↵Campbell Barton
rna properties to access the same value.
2013-01-16sculpt mode: there was no UI access to the brushes 'use_space' option, yet ↵Campbell Barton
its used to draw the interface and by sculpting tool as well.
2013-01-16Shape enhanced method exaggerates a shape using a Laplacian smoothing ↵Alexander Pinzon
operator in the reverse direction. http://wiki.blender.org/index.php/User:Apinzonf/shape_enhanced
2013-01-16Style cleanup: spaces at the end of linesSergey Sharybin
2013-01-16Get rid of the BRUSH_FIXED_TEX flag, use mapping modes instead. VersionAntony Riakiotakis
patched all previous texture paint brushes to use tiled mapping since mappping is now shared between 2d and 3d painting.
2013-01-16UI / Scene Context:Thomas Dinges
* Made Color Management and Audio panel closed by default to save space. * Added COMPAT_ENGINES to color management panel.
2013-01-16Unification of brush codeAntony Riakiotakis
* rename sculpt_brush_texture_settings to brush_texture_settings * Expose texture scale and offset in texture paint mode * Introduce still inactive mapping mode for texture paint, tiled and view aligned only. Projective paint uses only tiled, while 2d paint can use both. Commit will come that will use both appropriately for both modes, omitting fixed brush flag (which is tiled with another name)
2013-01-16style cleanupCampbell Barton
2013-01-15add user_preference access to _RestrictContext() so addons can access their ↵Campbell Barton
own preferences on load.
2013-01-15Added new function 'Remove Selection from All Vertex Groups' to the Vertex ↵Gaia Clary
Group Special functions popup
2013-01-15Minor UI message fix (from [#33101] Minor interface typo in User Preferences ↵Bastien Montagne
> Themes > Add Preset, patch by gdh, on IRC).
2013-01-15fix issue reported in '[#33876] bpy.path.ensure_ext adds extension twice / ↵Campbell Barton
extra period if filename empty, just a period or equal to extension' For python operators that used the ExportHelper mix-in class, an empty file field would become '.ext', entering and existing the text field would become '.ext.ext', Now only add an extension if the filename part of the path is set, so '.ext' will still become '.ext.ext' but having only the extension isn't so likely to happen in the first place now. This is a different fix then the changes suggested in the report but I'd prefer to keep path functions stupid+predictable.
2013-01-15replace vertex slide with the transform operator. (MESH_OT_vert_slide -> ↵Campbell Barton
TRANSFORM_OT_vert_slide)
2013-01-15Some fixes:Bastien Montagne
* handle nicely multiple empty lines in po files (still have to figure out why po writer sometime output two lines instead of one!) * fix rtl processing!
2013-01-14fix fox AddonPreferences not getting registered automatically and leak when ↵Campbell Barton
removing the addon (wasnt freeing ID-props).
2013-01-13Minor updates:Bastien Montagne
*Made branches' po update multi-process! *0.8 looks a bit too much a "similarity cutoff" value for messages, changed to 0.75.
2013-01-13simplify WM_MT_context_menu_enum(), use expanded enum property.Campbell Barton
2013-01-13remove TRANSFORM_OT_snap_type, use WM_OT_context_menu_enum instead.Campbell Barton
add Ctrl+Shift+Tab shortcut for selecting snap type to the UV editor too. also added icon drawing to WM_OT_context_menu_enum() so it gets the icons from the enum to draw them in the menu.
2013-01-13Grumph, going quicker than the music! :PBastien Montagne
2013-01-13remove 2.57-windows workaround for WM_OT_copy_prev_settingsCampbell Barton
2013-01-12Big refactor of bl_i18n_utils, switching to an object-based model. Still a ↵Bastien Montagne
bit wip. Notes: * Most tools here have been updated, only a few (unused :p ) features should be missing. But some updates are rough for now, and performances are globally worse currently, will address this later (this is only really noticeable when you work over the whole repo, anyway ;) ). * This update breaks "edit translations" addon, will fix it later, once core (i.e. this module) is considered stable again!
2013-01-12patch [#33738] Extend Selection option unified and added to few operatorsCampbell Barton
from Sebastian Nell (codemanx), with minor edits
2013-01-10Fix [#33825] Menu list widget does not work on UV and Vertex ColorsBastien Montagne
Own stupid mistake in recent UI list refactor - those two lists are a good example where a non-void 'id' is necessary, as they use the same class in the same window... Else, the same object is shared by the two, which can't work! :)
2013-01-10Depsgraph hack feature - experimentalTon Roosendaal
Many depsgraph failures are because some data in the graph is being recalculated too early (or not at all). Since we better support animators with working renders, here's a hack to allow manual additional updates on frame changes. In Property Editor, Object, Panel "Relations Extra" you now have two buttons: - Extra Object Update - Extra Data Update This will do an extra update of object and/or its data ONLY on frame changes. Update happens as last. Tested on files collected in Wiki todo, several cases now work OK, especially the lags on updates.
2013-01-10Fix #33816: property not found: World.use_texturesSergey Sharybin
Issue was caused bu svn rev53355 and now logic seems to mimic behavior before that change.
2013-01-10don't store bevel weights or edge crease customdata layers in editmode ↵Campbell Barton
unless they are needed. configurable in 'Geometry Data' panel, will be added when running crease edges transform for example.
2013-01-08fix [#33646] Deleting edge loops creates holes in uv mapCampbell Barton
2013-01-08Make "Clone" option in project paint options more clear nameSergey Sharybin
2013-01-08fix own error in recent update to follow active quads [#33783] Unwrap with ↵Campbell Barton
Follow Active Quad fails
2013-01-06Eyecandy feature: background gradient for 3D viewport. Enable in user ↵Antony Riakiotakis
preferences under themes->3D view->Theme Gradient Color. This is only used when use render only is not ticked and for now it may interfere with grid lines. Will investigate how to adjust contrast. Tidying up of options after advisory session on irc: Move all RNA code in Themes. Changes after merging trunk's commit that renders sky
2013-01-06correct 2 issues with startup.blendCampbell Barton
- scroll bars were not in info space - bake bias was 0.0, changed to 0.001 as it is for new scenes
2013-01-05Adding some example for new UIList...Bastien Montagne
2013-01-04Adding Uzbek languageBastien Montagne
2013-01-04add length average option to 'Follow Active Quads' unwrap, gives nicer results.Campbell Barton
2013-01-04change bpy.app.build_options from frozen set to PyStructSequence_Field, ↵Campbell Barton
mathes similar members of bpy.app and less error prone (typos won't fail silently).
2013-01-04expose common extensions for image/movie/audio types, since python scripts ↵Campbell Barton
had to do this internally. - bpy.path.extensions_image - bpy.path.extensions_movie - bpy.path.extensions_audio eg: if os.path.splitext(filename)[1].lower() in bpy.path.extensions_image: ... we have an image ...
2013-01-03fix [#33715] Dirty Vertex Colors display problem since 2.65aCampbell Barton