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
2021-07-26Fix T89812: 'Snap_Utilities_Line' - Projection error in orthographic viewv2.93.2Germano Cavalcante
2021-07-26Fix T89724: Drawing with make line tool in an empty scene results crashGermano Cavalcante
The operator incorrectly set `self._snap_buffer` to `None`. A more secure check could be implemented, but it didn't really seem necessary.
2021-02-17Snap Utilities Line: Replace the uses of the bgl module with the gpu equivalentGermano Cavalcante
Also a little style update due to automatic updates. Ref T80730, T85675
2021-02-12Fix mesh_snap_utilities_line crash when closing blenderGermano Cavalcante
When the tool is active and the blender is closed, the `GizmoGroup` type object is freed keeping some invalid RNA members. This is probably an internal error, but for now just work around this error by starting the object name with '_' since "RNA can't start with a "_",".
2021-02-09Fix mesh_snap_utilities_line running without key-maps availableCampbell Barton
This caused script_load_addons test to fail in some cases.
2021-02-04mesh_snap_utilities_line: Update keymap stringsNathan Craddock
The keymaps were changed in rB01d49d1542c which caused the script_load_addons test to fail on this addon. Update the strings to the new values.
2020-03-05Cleanup: tabs -> spacesCampbell Barton
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2020-02-06mesh_snap_utilities_line: Fix TypeError in 'depsgraph_update_post'Germano Cavalcante
```TypeError: handler() takes 2 positional arguments but 3 were given``` `depsgraph_update_post` now requires three arguments
2019-10-31mesh_snap_utilities_line: Cleanup: Silence WarningGermano Cavalcante
WARN (rna.define):(...)description from 'auto_constrain' '' ends with a '.' !
2019-10-25Fix T71104: Addon: snap utilites line. Errors with some cutsGermano Cavalcante
Normalize normal for more precision in `intersect_line_plane`.
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D5240
2019-07-23mes_snap_utilities_line: disable linksGermano Cavalcante
2019-06-28mesh_snap_utilities_line: Fix local contrainmano-wii
2019-06-25mesh_snap_utilities_line: Fix unregistry of global keymaps.mano-wii
Pointed out in T65968.
2019-06-25mesh_snap_utilities_line: new local constrain utilitiemano-wii
2019-06-25mesh_snap_utilities_line: Cleanup stylemano-wii
2019-06-22mesh_snap_utilities_line: update for changes in BlenderCampbell Barton
2019-05-30mesh_snap_utilities_line: fix missing detail in last update.mano-wii
I should've tested first.
2019-05-25mesh_snap_utilities: New linkmano-wii
2019-05-25mesh_snap_utilities_line: Fix point size drawing.mano-wii
2019-05-16Addons: Adopt for Dependency Graph API changesSergey Sharybin
Mainly search-and-replace approach. Tested the enabled-by-default export/import addons. Seems to work with an exception of X3D which is still referencing Blender Internal material properties. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4866
2019-04-26mesh_snap_utilities_line: match blender 2.8 updatesmano-wii
2019-03-20Fix Operator activation via shortcut key.mano-wii
2019-03-18mesh_snap_utilities_line: Update for changes in Blendermano-wii
2019-02-13mesh_snap_utilities_line: Fix attempt to make line in object out of edit modemano-wii
2019-02-11mesh_snap_utilities_line: Fix ghost objectsmano-wii
2019-02-11mesh_snap_utilitie_line: Don't always pass the active object mesh as the ↵mano-wii
main mesh.
2019-02-11mesh_snap_utilities_line: New solution for creating framebuffer out of the ↵mano-wii
right rendering context The way was to delay the initialization of the framebuffer for the test_select method. (This rendering context issue gives a lot of headache)!
2019-02-11mesh_snap_utilities_line: dereference global snap_contextmano-wii
Missed in the last commit
2019-02-11mesh_snap_utilities_line: Fix framebuffer being created and cleaned in the ↵mano-wii
wrong context The solution is somewhat hackistic because it requires the creation of a global framebuffer at the time the addon is registered
2019-02-10mesh_snap_utilities_line: Cleanupmano-wii
Rename files, and split the `common_classes.py` file into `drawing_utilities.py`, `navigation_ops.py` and `widgets.py`
2019-02-09mesh_snap_utilities_line: Fix attempt failed to get the original empty datamano-wii
2019-02-08mesh_snap_utilities_line: Use depsgraph API to evaluate updatesmano-wii
And cleanup.
2019-02-06mesh_snap_utilities: Intersect property removed by accidentmano-wii
2019-02-06mesh_snap_utilties_line: Add Gizmos supportmano-wii
2019-02-06mesh_snap_utilities_line: Fix error message if object has no facemano-wii
2019-02-06mesh_snap_utilities_line: Fix failed object detection in orthographic viewmano-wii
2019-01-02mesh_snap_utilities_line: fix face creationmano-wii
2019-01-02mesh_snap_utilities_line: fix ram and vram leakagemano-wii
2019-01-02mesh_snap_utilities_line: Fix F8 constraintmano-wii
2019-01-02mesh_snap_utilities_line: reset length_entered_valuemano-wii
2018-12-31mesh_snap_utilities_line: lock the snap when entering values.mano-wii
2018-12-25mesh_snap_utilities: don't initialize gpu and numpy at module levelmano-wii
2018-12-21mesh_snap_utilities_line: select the snapped element at the end of the operationmano-wii
In the pre-blender2.8 versions, the elements were selected during the operation to be identified. Now this is no longer necessary. However, the ability to leave the last element selected proved useful.
2018-12-21mesh_snap_utilities_line: finish operation when pressing Entermano-wii
Make the behavior look similar to the knife Tool.
2018-12-21Rename user_preferences -> preferencesCampbell Barton
2018-12-20mesh_snap_utilities_line: fix error messages when undomano-wii
2018-12-20mesh_snap_utilities_line: workaround for tool registrationmano-wii
2018-11-28mesh_snap_utilities_line: Hide by setting the version as not supported in ↵mano-wii
blender2.8. The Tool API for python is incomplete.