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
2020-07-15Fix T68845: Follow Active Quads, divide by zero errorCampbell Barton
2020-05-29Cleanup: line length, single quote enums, invalid URLCampbell Barton
2019-10-31Cleanup: import functions from bpy.propsCampbell Barton
Some instances used bpy.props when the convention is to import them.
2019-07-05Use latest/version number for manual linksAaron Carlisle
We want users to go to the current version for their current version when possible if not point to latest. /dev should really only be for development related work. End users should not be browsing /dev unless they are reading about upcoming features ahead of time.
2019-05-09Cleanup: unused args/vars/imports in bl_operatorsCampbell Barton
2019-03-14Cleanup: styleCampbell Barton
2019-03-14Fix "Follow Active Quad" poll functionCampbell Barton
Since this uses the active face this only makes sense in edit-mode.
2018-12-18Fix T59461: Follow active quad assertsCampbell Barton
2018-09-27Cleanup: pep8Campbell Barton
2018-09-06Multi-Objects: UV_OT_follow_active_quadsDalai Felinto
Starring: the overengineered error report system to make sure only one error is reported.
2018-09-03Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/blenkernel/intern/collision.c
2018-09-03Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3668
2018-08-14Cleanup: Update some links to new wikiAaron Carlisle
2018-07-11PyAPI: Use annotations for RNA definitionsCampbell Barton
- Logical use of fields since they define type information. - Avoids using ordered-dict metaclass. Properties using regular assignments will print a warning and load, however the order is undefined.
2018-06-26Merge branch 'master' into blender2.8Campbell Barton
2018-06-26Cleanup: pep8 function indentationCampbell Barton
2018-06-04Cleanup: newlines at EOF for Python modulesCampbell Barton
2017-05-25TexFace removal part 3Campbell Barton
- MTexPoly structure & layer type. - The 'Mesh.uv_textures' layers. - DerivedMesh TexFace drawing. - Scripts & UI.
2017-03-18PyAPI: remove bpy.utils.register_module()Campbell Barton
In preparation for it being removed, see: T47811
2013-12-12Fix T37692: Follow active quads failed on unselected-active-faceCampbell Barton
2013-01-16style cleanupCampbell Barton
2013-01-08fix own error in recent update to follow active quads [#33783] Unwrap with ↵Campbell Barton
Follow Active Quad fails
2013-01-04add length average option to 'Follow Active Quads' unwrap, gives nicer results.Campbell Barton
2012-11-29fix [#33332] UV follow active quadsCampbell Barton
rewrite the script to use bmesh connectivity info.
2012-07-04Last spell checking (for now).Bastien Montagne
Only mysterious courant from bpy.types.ParticleSettings.courant_target reamins...
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
Should also fix the broken py ops tips...
2012-04-23rename Mesh.uv_loop_layers --> uv_layersCampbell Barton
add filtering for document generator to support --partial bpy.types.SomeType
2012-04-13bmesh todo: vertex dirtmap now working again.Campbell Barton
also renamed Polygon helper property from 'loops' to loop_indices
2012-03-23more face -> tessface editsCampbell Barton
2012-03-08style cleanup: pep8 + picky editsCampbell Barton
2012-02-08svn merge ^/trunk/blender -r43934:43976Campbell Barton
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2011-11-17Add access to UVs from python, patch python unwrap scripts to work wtih ngonsAndrew Wiggin
2011-11-11pep/style edits & quiet some warningsCampbell Barton
2011-10-17correct spelling errors in commentsCampbell Barton
2011-09-19/release/scripts: Removed final points in UI strings and messages.Bastien Montagne
2011-08-12import common classes from bpy.types, saves ~1000 python getattrs on startup.Campbell Barton
2011-07-10cleanup for python scripts - unused vars and importsCampbell Barton
2011-05-26correct spelling error and some pep8 changes.Campbell Barton
2011-05-26move less common mesh operations out of bpy_types into bpy_extras.mesh_utilsCampbell Barton
2011-03-21move script directories for internal blender scripts.Campbell Barton
ui/ --> startup/bl_ui op/ --> startup/bl_operators scripts/startup/ is now the only auto-loading script dir which gives some speedup for blender loading too. ~/.blender/2.56/scripts/startup works for auto-loading scripts too.