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-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2021-08-30Collection Manager: Improve UI for adding QCD slots. Task: T69577Ryan Inch
Replace the X labels in the QCD header widget with operators that generate the corresponding slot when clicked, allows for moving objects to the new slot by pressing hotkeys when clicking. Each unassigned slot operator has a tooltip specifying it's an unassigned slot, which slot number it corresponds to, and lists the hotkeys that can be used with it and their functions. Adds a menu item to the QVT menu (the eye icon beside the QCD header widget) to add any missing QCD slots so that you end up with a full 20 slots.
2021-07-12Collection Manager: CM popup UX fixes. Task: T69577Ryan Inch
Renamed the Set Collection Operator to Send Objects To Collection and updated it's tooltip. Changed it's icon for a collection with no objects from the grid icon to the import icon for (hopefully) better discoverability. Updated the filter bar's invert icon to use the standard arrows icon. Changed the filter collections by selected objects icon to the selected objects icon used by the send objects to collection operator.
2021-07-12Collection Manager: Select cumulative objects. Task: T69577Ryan Inch
Add operator to select all objects that are present in more than one collection. The operator can be accessed from the specials menu in the CM popup.
2021-07-06Update add-ons after renaming master collection IDs to 'Scene Collection'.Bastien Montagne
This mostly affects default names in object collection manager add-on.
2021-05-19Collection Manager: Tooltip fixes. Task: T69577Ryan Inch
2021-05-10Collection Manager: Fix phantom mode issue. Task: T69577Ryan Inch
Fixes the add collection operators, undo operators, and specials menu in the CM popup not being disabled when in phantom mode.
2021-03-24Collection Manager: Improve indicators. Task: T69577Ryan Inch
Change selection indication in CM popup to more easily identify selection state and whether objects in collection can be selected. Change icons from circles to diamonds to differentiate from QCD icons, as what they indicate is slightly different.
2021-03-17Collection Manager: Add object selection to CM popup. Task: T69577Ryan Inch
Exposes selecting objects by collection to the CM popup, and adds additional state information regarding selection. Refines Set Object Collection UI to be less likely to hit by accident.
2021-03-17Collection Manager: Add undo support. Task: T69577Ryan Inch
Add undo and redo buttons to the CM popup. These buttons use operators that wrap the internal undo/redo operators with handling of CM internal data.
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-20Collection Manager: Improve filtering 3. Task: T69577Ryan Inch
Clean up treeview display code to be simpler and more consistent with the rest of the filtering code.
2020-10-20Collection Manager: Improve filtering 2. Task: T69577Ryan Inch
Allow filters to be combined with each other.
2020-10-20Collection Manager: Improve filtering 1. Task: T69577Ryan Inch
Improve filtering for new collections. Prevents adding new collections when the selected collection isn't visible and includes the new collection in the current filter until the filtering changes.
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: Refactor. Task: T69577Ryan Inch
Change detection of the master collection from an ambiguous index to an is_master_collection boolean.
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: Add Operator. Task: T69577Ryan Inch
Add Apply Phantom Mode operator.
2020-07-22Collection Manager: Add Operator. Task: T69577Ryan Inch
Adds a Remove Empty Collections operator in a new specials menu in the main Collection Manager popup. This operator has two modes: Mode one only removes collections if they don't have subcollections or objects. Mode two removes all collections that don't contain objects. Both of these modes are accessible via the new specials menu.
2020-07-21Collection Manager: Fix cleanup. Task: T69577Ryan Inch
2020-07-21Collection Manager: Cleanup. Task: T69577Ryan Inch
Standardize setting operator properties.
2020-07-18Collection Manager: Add to menus. Task: T69577Ryan Inch
Add the main collection manager window and the QCD move widget to the Object->Collection menu, formerly these were only accessible through hotkeys. Improve tooltips to better describe what these do.
2020-07-04Collection Manager: Remove tab from N-Panel. Task: T69577Ryan Inch
Remove the Display Options tab from the N-Panel as it's only supposed to show up in a popover in the main popup.
2020-06-25Collection Manager: Add alignment options. Task: T69577Ryan Inch
Add an option to display RTOs and other operators aligned to the right. Renamed the Filter Restrictions Toggle popover to Display Options. Added a line separator between collections in the tree view.
2020-05-23Collection Manager: Fix invalid list index. Task: T69577Ryan Inch
Fix error when trying to add a new collection if the selected collection was deleted using the Outliner.
2020-04-29Collection Manager: Phantom Mode fixes. Task: T69577Ryan Inch
Fix Phantom Mode not disabling the active collection operators and the set object operator for the Scene Collection.
2020-04-25Collection Manager: Fix popup sizing. Task: T69577Ryan Inch
Adjust popup sizing to account for the width of the QCD field when present.
2020-04-25Collection Manager: Fix selection issues. Task: T69577Ryan Inch
Make treeview selection more stable and predictable. Fix not being able to select the row from the left side with a top level expander -- adjusts window sizing to account for this.
2020-04-25Collection Manager: Fix active collections. Task: T69577Ryan Inch
Fix display of and interaction with active collections.
2020-04-18Collection Manager: Expander fix. Task T69577Ryan Inch
Fix expanded and expand history not getting updated on collection removal.
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-14Collection Manager: Fix button positioning. Task: T69577Ryan Inch
Fix positioning of the Collapse/Expand and Re-numerate QCD Slots buttons in the Collection Manager popup.
2020-04-14Collection Manager: Support Scene Collection. Task: T69577Ryan Inch
2020-04-12Collection Manager: Refactor. Task: T69577Ryan Inch
Refactor operators to massively decrease code duplication. Remove history from invert function (not needed).
2020-04-10Collection Manager: Update tooltips. Task: T69577Ryan Inch
Shorten and standardize tooltips. Add label to RTO filter popover panel.
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-08Collection Manager: Fix T75474. Task: T69577Ryan Inch
Fix crash when changing templates.
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: Phantom Mode update. Task: T69577Ryan Inch
Disabled QCD slot numeration fields and Re-numerate QCD Slots operator when in Phantom Mode
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-27Collection Manager: Add icon for copy/swap. Task: T69577Ryan Inch
Adds an icon to show when you're copying and swapping RTOs at the same time.
2020-03-24Collection Manager: Fix QCD filter button. Task: T69577Ryan Inch
Fixes it so that the Filter by QCD button disappears when QCD is disabled.
2020-03-18Collection Manager: Add prefs to disable QCD. Task: T69577Ryan Inch
Adds two checkboxes to preferences. One to disable the whole QCD system, the other is a sub-checkbox to disable the QCD view (number) hotkeys.
2020-03-18Collection Manager: Add copy/paste RTOs feature. Task: T69577Ryan Inch
2020-03-18Collection Manager: Add swap RTOs feature. Task: T69577Ryan Inch
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.