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
2014-05-01Fix T31555: Username with special chars in Windows 7Bastien Montagne
At last! Could not check seriously on windows (though it was done during py patch process).
2014-05-01Include removal gave problems with windows, ifdef some back in for windows onlyCampbell Barton
2014-05-01Revert "Fix msvc 2013 compiler errors after the ingenious cleanup in ↵Campbell Barton
4ca67869cc7a." This reverts commit a47a4ef82f37428d391cc14a30fa611d6714e71d.
2014-05-01Fix msvc 2013 compiler errors after the ingenious cleanup in 4ca67869cc7a.Thomas Dinges
2014-04-30Code cleanup: remove unused includesCampbell Barton
Opted to keep includes if they are used indirectly (even if removing is possible).
2014-04-30Fix T35176: Python fails with blend files from non-ASCII pathsCampbell Barton
Thanks to Tamito for updating the patch to support Freestyle!
2014-04-30Python: move to version 3.4x on all platformsCampbell Barton
2014-04-29Code cleanup: quiet warningsCampbell Barton
2014-04-29Error in last commitCampbell Barton
2014-04-29PyAPI: Matrix.invert(ed): accept an optional fallback argumentCampbell Barton
This avoids try/except when its possible the matrix has no inverse.
2014-04-29Code cleanup: remove redundant matrix initializationCampbell Barton
2014-04-29Ignore user-preferences when inserting keys from PythonCampbell Barton
2014-04-28PyC_RunQuicky: Print filename when its missingCampbell Barton
2014-04-26Code cleanup: use 'const' for arrays (python)Campbell Barton
2014-04-18Change Vector.slerp to accept nonunit vectorsCampbell Barton
2014-04-13Split Normals I (2/5): Add basic BMesh support of split normals.Bastien Montagne
* Merely a re-implementation of core split algorithm for BMesh, taking advantage of topological data available. * This code needs valid loop indices, so added BM_LOOP support to BM_mesh_elem_index_ensure() & co. Reviewers: campbellbarton Reviewed By: campbellbarton CC: brecht Differential Revision: https://developer.blender.org/D366
2014-04-11Code cleanup: use boolCampbell Barton
2014-04-03Code cleanup: strict flags for bmesh_logCampbell Barton
2014-04-01Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT defineCampbell Barton
2014-03-31Py API: Vector.slerp(). also added interp_v3_v3v3_slerp(_safe) functionsCampbell Barton
2014-03-31Fix for error in normalize_vn_vn(), add len_squared_vnCampbell Barton
2014-03-28Code cleanup: use sqrtf when input and output are floatCampbell Barton
2014-03-24Fix T39392: Python bindings for geometry.box_pack_2d() return invalid total ↵Bastien Montagne
height
2014-03-19Code cleanup: unreachable break/returnCampbell Barton
2014-03-18KDTree: deprecate 'normal' argumentCampbell Barton
Normals for each kdtree node were allocated but never used, and search args only use in particles/boids code.
2014-03-17Python API: add Vector.orthogonal() methodCampbell Barton
2014-03-15Code cleanup: use r_ prefix for return argsCampbell Barton
2014-03-05Alternative fix for T38753, use existing __file__ in namespaceTamito Kajiyama
2014-03-01Code cleanup: correct abs use and quiet warningsCampbell Barton
2014-02-28PyAPI: correct warning with dynamic enumsCampbell Barton
2014-02-25Fix for custom property editor when property id's contained quotesCampbell Barton
Adds bpy.utils.escape_identifier()
2014-02-22Fix T38753: Python script paths weren't escaped (Win only)Campbell Barton
2014-02-22Code cleanup: styleCampbell Barton
2014-02-14Py API: refactor py text compiling into its own functionCampbell Barton
2014-02-14Code cleanup: duplicate headersCampbell Barton
2014-02-12Fix T38541: sys.exit fails when blender is built as a py-moduleCampbell Barton
2014-02-08RNA: add flag to be used for changing numbers proportionallyCampbell Barton
2014-02-08Py Docs: move bpy.props options and subtype flags into generic definesCampbell Barton
added some missing flags into docs too.
2014-02-05PyAPI: mathutils.Vector.cross now works for 2d vectors (returns a float)Campbell Barton
also fixed crash when running on large vectors (raises exception now)
2014-02-03Code cleanup: use bools where possibleCampbell Barton
2014-01-30Fix for crash linking node groups through bpy.data.libraryCampbell Barton
Defer creating the Python objects until after appending is finished because NodeTree's types are not initialized until then.
2014-01-30PyAPI: noise.seed_set(), note that zero is a special case.Campbell Barton
2014-01-30Fix T38402: invalid message for bad type assignments (Quat, Vector)Campbell Barton
2014-01-29Fix T36955: API docs referred to sys.maxint which does not exist in Python 3.Brecht Van Lommel
2014-01-27Code cleanup: use booleans where appropriateCampbell Barton
2014-01-27Fix incorrect externCampbell Barton
2014-01-23Fix T38150: implementation mismatch in bmesh pythonBastien Montagne
Hopefully this time all mismatches are fixed (quickly checked the whole BMesh API files, found a few others in addition to those reported in T38150).
2014-01-21Fix for own refcount error in recent commitCampbell Barton
2014-01-21Fix T38297: missing StringProperty subtype 'PASSWORD' in API docs.Brecht Van Lommel
2014-01-20Python API: fix for help() failing on bpy instancesCampbell Barton
Caused by missing __name__ from bpy.types (alternate method to patch D232)