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-10-14Cleanup: fix typosBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D16234
2022-09-05Fix T100807: Snap Utilities Line doesn't create faces for non-boundary edgesGermano Cavalcante
2022-09-05Snap Utilities Line: use 'is_wire' instead of checking 'link_faces'Germano Cavalcante
Small micro optimization
2022-05-24Snap Utilities Line: update to new 'GPUShaderCreateInfo'Germano Cavalcante
The old way of creating shaders is already out of use in C code. The same should be expected for Python.
2022-04-20Snap Utilities Line: increment version numberGermano Cavalcante
2022-04-20Fix T97458: Snap_Utilities_Line rotate navigation not workingGermano Cavalcante
Some recent change in the event system cause the `event.value` to be `'NOTHING'` when `event.type` is `'MOUSEMOVE'`. Checking the `event.value` is not really necessary here.
2022-04-20Cleanup: formatting using autopep8Germano Cavalcante
2022-04-13Snap Utilities Line: consider UI scaling for drawing and snappingGermano Cavalcante
Better match between monitors with different DPI.
2022-04-13Fix missing clip planes update in Snap Utilities LineGermano Cavalcante
Make sure you always check for state change.
2022-04-13Fix regression with Clip Planes in Snap Utilities LineGermano Cavalcante
A while ago shaders started to use uniform buffers to set clip planes. The python codes also need to be updated.
2022-04-11Revert "Snap Utilities Line: update to new 'GPUShaderCreateInfo'"Germano Cavalcante
This reverts commit 4e932c56792b332ef645131ad7b72a932e626c92. Was accidentally pushed before D14497.
2022-04-11Snap Utilities Line: update to new 'GPUShaderCreateInfo'Germano Cavalcante
2022-04-11Cleanup: Mesh Snap Utilities Line: FormatingGermano Cavalcante
2022-03-15Cleanup: fix source typosBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D14313
2022-03-01Merge branch 'blender-v3.1-release'Aaron Carlisle
2022-03-01Cleanup: Use `BLENDER_MANUAL_URL` prefixAaron Carlisle
2022-02-14File headers: use SPDX license identifiersCampbell Barton
Some files needed to be changed manually.
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2022-01-05Cleanup: fix types in source codeBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
2021-11-16Snap Utilities Line: Update Documentation LinkGermano Cavalcante
2021-08-26Cleanup: redundant importsGermano Cavalcante
2021-08-26Snap_Utilities_Line: update clip distance APIGermano Cavalcante
2021-08-16Snap_Utilities_Line: support 3d view clip planesGermano Cavalcante
Elements that are not visible due to clip planes are ignored in the main operation.
2021-07-22Fix T89812: 'Snap_Utilities_Line' - Projection error in orthographic viewGermano Cavalcante
2021-07-14Fix T89810: Vertex snapping at world origin when using 'Snap_Utilities_Line'Germano Cavalcante
The operator depended on the gizmo to get the initial location.
2021-07-08Fix 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