Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-01-05Cleanup: fix typos in source codeBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
2021-12-01Cleanup: trailing space & tabs to spacesCampbell Barton
2020-02-05PDT: Various improvements to help avoid user errorAlan Odom
In certain circumstances, where the user has unwisely set inappropriate inputs, modes of operation, or other settings, some errors were not trapped. This fixes those making the system more "User Proof". A new exception was added if the user works in an inappropriate feature setting, like Face mode when Vertex mode is required.
2020-02-04PDT: Docstring fixes and a small bug fixAlan Odom
All Docstrings have been examined for typos and format, etc. Small code change to set Selection Mode to "SEL" if operation is not "C" or "P" to avoid possible errors when using other operations.
2020-02-03PDT: Move stray files from add-on root folderRune Morling
The error likely came about because we first commit files to @clockmender's upstream github repo and then use git format-patch to create patches which are then applied to the blender add-on repo with: `git-am -3 --rerere-autoupdate foo.patch`. Here, the issue seems to be that we've renamed files in the upstream github repo, but that I then failed to first create and commit empty files with the same name in the precision_drawing_tools/ repo, which meant that git did the best it could and added them to the root of the blender add-ons repo since the files didn't exist in the add-on repo index when they were added.