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-07-24curve only supported radius smoothing, add smooth for tilt and weight.Campbell Barton
2013-07-24fix [#36262] Paste strip with video or sound content from another file ↵Campbell Barton
crashes Blender existing code was very stupid. - all ID pointers for clipboard strips are handled uniformly. - clipboard stores a duplicate ID pointer which are restored on paste. - restoring pointers... -- use ID's that are still in the database (copy&paste within the same file). -- fallback to name lookup. -- fallback to loading them from the original filepath (movie-clip and sound only). also fix bug pasting where initialing the sound wasn't done if there was no frame-offset.
2013-07-23remove use_relative option from simple deform,Campbell Barton
all modifiers should be using object transformations relatively.
2013-07-23prepare for 'a' bugfix release, splash and version bump.Campbell Barton
2013-07-21snap to cursor (offset option) added for UV's too.Campbell Barton
2013-07-20add new snap option: 'Selection to Cursor (Offset)',Campbell Barton
rather then moving everything into the cursor location, the current selection centers around the cursor, maintaining their relative distances. works for mesh, object, pose bones etc.
2013-07-20misc editsCampbell Barton
- fix for missing None check with recent 'Hidden Wire' draw option. - avoid int overflow with mesh selection. - remove ';' outside of functions.
2013-07-20Fix descriptions for mask selection operators and use less ambiguous ↵Sv. Lockal
"letter-spacing" term
2013-07-20Select more/less tool for mask splinesSv. Lockal
2013-07-20Cycles / Sampling Presets:Thomas Dinges
* Values were a bit too small for the Progressive integrator, now we use 12 and 24 (sqared).
2013-07-20hidden wireframe option for mesh editmode, important for retopology mode ↵Campbell Barton
(can be used with xray).
2013-07-20Cycles / Sampling Presets:Thomas Dinges
* Add Presets for Sampling. This comes with a simple Preview and Final preset, but as this is varying a lot depending on the scene, they should just be a starting point. The user can add own presets here. * Some UI layout changes to match the settings a bit better.
2013-07-20Add Tamil characters to our i18n font (from samyak-tamil).Bastien Montagne
2013-07-19patch [#35789] Quick hack select more/less tool for armaturesCampbell Barton
by Pedro Riera (priera), Andrey Dubravin and parts rewritten by myself.
2013-07-19patch [#36032] Quick Hack lattice random selectionCampbell Barton
by Andrey Dubravin (daa)
2013-07-18Tradtional release commit! 2.68 splash and the numbering.Ton Roosendaal
- This should then follow the tagging - And I would still prefer to have at least 24 hours full freeze, for proper test and avoid last minute errors.
2013-07-17re-commit temp workaround [#35920], this still fails for OSX retina display,Campbell Barton
but at least it resolves for DPI values other then 72.
2013-07-16Style cleanup of UI messages.Bastien Montagne
Mostly, "weight groups" -> "vertex groups", and usual case/endpoints/typos/etc. As a remainder, please read http://wiki.blender.org/index.php/Dev:Doc/CodeStyle#UI_Messages before writing UI messages!
2013-07-09move keymap ui into modules, its not loaded on startup anymore.Campbell Barton
2013-07-08fix [#36043] Missing Tooltip for Excluded Paths field of Auto Run Python ↵Campbell Barton
Scripts in User Preferences -> File also select more/less were flipped for mesh menu compared to everywhere else.
2013-07-08re-arrange space_userpref_keymap, no need to use a subclass here, just ↵Campbell Barton
import the module and call draw_keymaps(). - making this change now because some addons developers are interested in showing keymap UI in their addons prefs and using the class involved making a fake class instance which isnt needed.
2013-07-07Fix for incorrect clipping of Freestyle strokes when the viewport preview is ↵Tamito Kajiyama
used.
2013-07-06remove dummy menu which WM_OT_context_menu_enum needed, use popup menu ↵Campbell Barton
directly instead.
2013-07-05fix [#35977] Bake Action doesn't work properlyCampbell Barton
there are cases where you want to use visual-keying but not remove constraints, also it wasnt obvious that clearing constraints used a different method of keyframing. So split these into 2 options.
2013-07-05Partial fix for Bug #35695: Freestyle produces extra line across an object ↵Tamito Kajiyama
with pointed areas. The reported problem is a visual artefact (extra lines) generated by ChainingIterators.pySketchyChainingIterator used for sketchy chaining with the Same Object option disabled in the Parameter Editor mode. The issue is caused by an inconsistency in the internal data structure (i.e., view map). For now this fatal error condition is addressed to avoid visually incorrect results. Another fix will follow to address the cause of the internal inconsistency.
2013-07-04Fix #35994: shape key mirror without topology did not properly work afterBrecht Van Lommel
doing mirror with topology.
2013-07-04remove checks for active object in the weight panel, this is incorrect for ↵Campbell Barton
weight transfer and we better rely on operators poll functions.
2013-07-03Weight Paint: Enable Transfer Weights tool for Obejcts with no Vertex GroupsGaia Clary
2013-07-03Fix #35974: smoke flow force field icon missing in add menu.Brecht Van Lommel
2013-07-03reduce imports on startupCampbell Barton
2013-07-02bump up openmp limit for release,Campbell Barton
also remove 'Vertex ' prefix for items in the vertex menu.
2013-07-01Bugfix [#35936] Can't create new vertex group when using Ctrl G menuJoshua Leung
This was caused by r.57812 There were two problems here: 1) vertex_group_vert_select_unlocked_poll() had faulty logic which meant that it always failed when there were no vgroups present yet - the final return always just fell through 2) Since the "Assign to New Groups" option was actually implemented using the same operator as "Assign to Active Group" (just with an extra parameter set), if the active group was locked, it was not possible to "Assign to New Group" (even though a new group would not be locked).
2013-06-30revert own fix for adding nodes with (DPI != 72), the fix doesn't work for ↵Campbell Barton
OSX retina displays.
2013-06-28Fix #35551: the topology mirror setting affected shape key and vertex group butBrecht Van Lommel
this was confusing as there was no setting visible for it. Now these menus contain an entry to mirror without and with topology mirror.
2013-06-28weight Paint: moved Auto Normalize and Multipaint options below Blend selectorGaia Clary
2013-06-27Blender 2.68 Release maintenance:Thomas Dinges
* Update readme and release-log links to 2.68.
2013-06-27fix for adding nodes with a DPI besides 72 causing offset.Campbell Barton
2013-06-273d text tool - 'insert lorem' was crashing, also add this to the text menu.Campbell Barton
2013-06-27pep8 cleanupCampbell Barton
2013-06-26Fixed operator call (due to renamed operator parameter)Gaia Clary
2013-06-23add missing notifiers for mask tools, some wouldn't refresh the compositor.Campbell Barton
2013-06-23mask menus were missing from the image editor.Campbell Barton
2013-06-22comment the icon file from the theme buttons since its not working.Campbell Barton
2013-06-20move sort from vert/edge/face into mesh menu only (sorting isn't such a ↵Campbell Barton
common operation). correct own recently added assert.
2013-06-20support proportional editing with x-mirror enabled.Campbell Barton
2013-06-20Snap to Symmetry (editmesh tool)Campbell Barton
Update from a script I had in 2.4x, useful if you have mesh data which is _almost_ symmetrical, there was no good way to automatically make the minor adjustments to make the mesh fully symmetrical. Options for... - symmetry-axis. - blending between the +/- side. - center mid verts. Access from Mesh menu.
2013-06-19This commit tackles the "context" buttons in Properties header, which were ↵Bastien Montagne
still using "ugly" old UI code. It removes buttons_header.c file, adds a (small) space_properties.py one, with a PROPERTIES_HT_header class, which simply uses the RNA enum to draw the context buttons. It also fixes that enum, btw, it always featured all contexts, which means you could (try to!) set through RNA invalid contexts... Thanks to brecht and dingto for the reviews.
2013-06-19report exceptions when enabling and disabling modules in blenders interface.Campbell Barton
so if pressing the addon checkbox fails it tells why rather then failing silently.
2013-06-18add option to enable auto-execute scripts, but exclude certain directories.Campbell Barton
2013-06-18fix [#35771] "Specials" ->"Size Y" doesn't work for Cycles area lampCampbell Barton