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-01-13Collection Manager: Add ops for selected objects. Task: T69577Ryan Inch
Add operators to isolate/disable the collections of selected objects.
2020-11-04Collection Manager: Refactor and cleanup. Task: T69577Ryan Inch
Change how addon wide variables are imported.
2020-10-14Collection Manager: Improve send_report popup. Task: T69577Ryan Inch
Improve the line spacing for the send_report popup.
2020-09-26Collection Manager: Add QVT. Task: T69577Ryan Inch
Add Quick View Toggles for influencing QCD setup, e.g. enable all slots. Fix bugs with QCD slot switching. Fix the active object sometimes getting lost when toggling slots.
2020-08-11Collection Manager: Add Holdout & Indirect Only. Task: T69577Ryan Inch
Add support for the Holdout and Indirect Only RTOs.
2020-08-02Collection Manager: Fix T78985. Task: T69577Ryan Inch
Refactored the functions get_move_selection and get_move_active to be faster by using sets and looping through all the objects instead of looping through the selected objects and using direct object lookups, except for special cases where direct lookups are actually faster. Removed unneeded calls to get_move_selection and get_move_active.
2020-07-22Collection Manager: Update QCD Renumbering. Task: T69577Ryan Inch
Added a linear renumbering option. Added a constrain to branch option. Allowed all options to be combined with each other. Updated tooltip.
2020-06-25Collection Manager: Depth first renumber. Task: T69577Ryan Inch
Add a depth first option to the Renumber QCD Slots operator.
2020-04-23Collection Manager: Fix QCD numeration. Task: T69577Ryan Inch
Fix auto-numeration missing slots. Fix renumerate not starting at slot 1. Fix name spelling and tooltips.
2020-04-20Collection Manager: Fix QCD edit mode. Task: T69577Ryan Inch
Fix and simplify QCD edit mode implementation.
2020-04-17Collection Manager: Expander fixes. Task: T69577Ryan Inch
Fix expanded not getting properly updated on collection name change. Fix expand history not getting updated on collection name change. Fix expand history not getting cleared on collapse all. Fix isolate tree restoring no matter what expander you click on. Fix UI not showing isolated status when expander not expanded.
2020-04-15Collection Manager: Fix bug in name update. Task: T69577Ryan Inch
Fix rto_history not getting updated on collection name change.
2020-04-13Collection Manager: Preserve edit mode. Task: T69577Ryan Inch
Preserve edit mode when switching QCD slots. Add hotkeys and preference toggle for this. Hotkeys added for all objects with edit mode except fonts.
2020-04-12Collection Manager: Refactor. Task: T69577Ryan Inch
Refactor operators to massively decrease code duplication. Remove history from invert function (not needed).
2020-04-12Collection Manager: Fix name update. Task: T69577Ryan Inch
Fix expanded and QCD slots/overrides not getting updated properly when renaming a collection. This was especially problematic when the name change triggered other name changes.
2020-04-10Collection Manager: Fix View Layer update. Task: T69577Ryan Inch
Make QCD 3D View header widget update immediately after changing View Layers. Prevent unnecessary View Layer update in Collection Manager popup.
2020-04-06Collection Manager: Update Move Operator. Task: T69577Ryan Inch
Updates the Collection Manager's Move Operator with improvements developed for QCD.
2020-04-02Collection Manager: Prevent invalid states. Task: T69577Ryan Inch
Fixed bug with Phantom Mode state checking. Fixed bug with copy/swap buffers getting stuck if state invalidated. Add checks on collection manager popup to verify RTO history and copy/swap buffer states.
2020-03-31Collection Manager: Code cleanup. Task: T69577Ryan Inch
2020-03-30Collection Manager: QCD polishing. Task: T69577Ryan Inch
Made QCD internal structure more stable. Prevented reload scripts from resetting QCD slots. Fixed QCD being left in an incorrect state on undo/redo. Fixed a small error on unregister.
2020-03-16Collection Manager: Add QCD System. Task: T69577Ryan Inch
Adds a Quick Content Display (QCD) system to the Collection Manager. This consists of a 3D View Header widget and a floating panel similar to the layers system in blender 2.7x, along with hotkeys to view/move objects to QCD slots, and additions to the main Collection Manager popup to allow you to manage which collections correspond to which slots.
2020-03-13Collection Manager: Add isolate tree feature. Task: T69577Ryan Inch
Switches the current hotkey for expanding/collapsing all sublevels from shift-click to ctrl-click. Isolate tree is set to shift-click.
2020-03-09Collection Manager: Code cleanup. Task: T69577Ryan Inch
Combined all my global blender properties into a property group. General code cleanup.
2020-03-05Cleanup: tabs -> spacesCampbell Barton
2020-01-25Collection Manager: Add nested isolation. Task: T69577Ryan Inch
Adds nested isolation with accompanying infrastructure changes to accommodate this. Includes latest fixes from blender-v2.82-release branch: * Fix local render RTO tooltip. * Fix isolation when history has only one. Small whitespace cleanup.
2020-01-06Collection Manager: Fix send_report error. Task: T69577Ryan Inch
Transferred the send_report function and class from my Advanced UI Menus addon that I forgot to include when I first separated the Collection Manager from it.
2019-12-21Collection Manager: Fix popup sizing. Task: T69577Ryan Inch
Fix bug with automatic window sizing based on the maximum number of sub-levels present.
2019-12-09object_collection_manager: use GPL headers for all filesCampbell Barton
2019-12-09Cleanup: trailing spaceCampbell Barton
2019-12-09Use "object" prefix for collection managerCampbell Barton
This was defining it's own category, which should be avoided and isn't needed in this case since it manages object collections.