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-30Merge branch 'blender-v2.92-release'Julien Duroure
2021-01-28BlederKit: fix snapping with particlesVilém Duha
Now the snap also ignores particles. Also fix a case if user didn't fill a name in profile, now it draws at least users email.
2021-01-28BlenderKit: fix start of assetbar with no search resultsVilém Duha
This wouldn't previously show asset bar, now it starts search and shows assetbar.
2021-01-28BlenderKit: fix search results storageVilém Duha
Storing results in scenes increased file size too much. Now the search reasults are stored in window manager and thus not saved. Also this makes them shared between more scenes.
2021-01-27Merge branch 'blender-v2.92-release'Campbell Barton
2021-01-27Merge branch 'blender-v2.92-release'Campbell Barton
2021-01-27Merge branch 'blender-v2.92-release'Campbell Barton
2021-01-27Merge branch 'blender-v2.92-release'Campbell Barton
2021-01-27Merge branch 'blender-v2.92-release'Campbell Barton
2021-01-27Merge branch 'blender-v2.92-release'Campbell Barton
2021-01-27Merge branch 'blender-v2.92-release'Campbell Barton
2021-01-25Cleanup: strip trailing spaceCampbell Barton
2021-01-24BlenderKit: UI cleanupVilém Duha
move several props in search panel into filters subpanel.
2021-01-24BlenderKit: fix back-side snapping.Vilém Duha
also remove forgotten prints.
2021-01-23BlenderKit: fix snapping from orthographic camerasVilém Duha
2021-01-19BlenderKit: fix category upload for 3 level categoriesVilém Duha
If the subcategory1 enum was empty but the enum value would be higher than 0 from previous attempts, the metadata upload would fail.
2021-01-18BlenderKit: fix T84766 - Specify utf-8 encoding for all json file write/readsVilém Duha
This is used on various places of the addon, and was introduced to fix (once more and better) T48766.
2021-01-18BlenderKit: disable undo pushesVilém Duha
These seem to crash now for an unknown reason.
2021-01-18BlenderKit: Fix T84778Vilém Duha
2021-01-17BlenderKit: fix snapping through bound box objectsVilém Duha
Now the snapping code ignores bound box displayed objects.
2021-01-17BlenderKit: fixing asset bar codeVilém Duha
This is now only included under experimental features. It includes a stripped down version of bl_ui_widngets library by Jayanam. Basically the asset bar code got split and now both asset bar codes are next to each other.
2021-01-13BlenderKit: fix a logging bugVilém Duha
caused assets not to append in saved files.
2021-01-06BlenderKit: cleanup importsVilém Duha
all modules are reloaded from __init__.py Also prevent a bug thrown when a scene loads with search resutsl and the thumbnail cache was wiped out.
2021-01-06BlenderKit: fix T84391Vilém Duha
This issue was caused by wrong use of importlib, turns out this was wrong from the very beginning and that I never studied how reimporting of libs woks. Now the speed of script reload seems not to be influenced by BlenderKit anymore.
2021-01-06BlenderKit:Vilém Duha
minor logging fixes
2021-01-06BlenderKit: fix typos, reenable icon in profile panelVilém Duha
2020-12-31BlenderKit Fast metadata edit operatorVilém Duha
Shortcut Ctrl+F or menu item in asset context menu. Also several fixes to logging
2020-12-30BlenderKit: make HDR and Scene assets not experimentalVilém Duha
correct links to tutorials for these 2 assets free only becomes free first A lot of logging calls instead of utils.p()
2020-12-30BlenderKit: fix thumbnailerVilém Duha
Forgot unhidden a collection that should be hidden by default
2020-12-30BlenderKit: upload displayNameVilém Duha
This enables 2 names for assets - displayName is shown to user, but name is the one saved in the assets. 90% of time these will be the same, but when a user only updates the name of the asset, there is no more need to reupload because the name needed to be the same in the .blend file. also rename draw_callback_2d_search to draw_asset_bar
2020-12-30BlenderKit: fix thumbnailerVilém Duha
The bakground was too glossy and could create unnecessary gradients in the background Fix hiding of the modifier for high particle counts with particle_plants
2020-12-29BlenderKit: Particle Plants supportVilém Duha
by now, if creators upload a particle setup with the particle_plants tag then the add-on tries to apply the particles directly on the drag-drop target surface.
2020-12-28BlenderKit: forgot a testing bug in previous commitVilém Duha
this was intentional typo for testing
2020-12-28BlenderKit: switch to logging for the add-onVilém Duha
This should help with sane development and also avoid forgotten prints for users.
2020-12-27BlenderKit: several improvements to ratingVilém Duha
Try to make rating more prominent in the interface by adding some messages to tooltips (by now only for validators), reorder rating in the menu Fix texture resolution in tooltips.
2020-12-27BlenderKit: HDR resolutionsVilém Duha
also fix several issues with HDRs - categories upload (for all asset types was broken) - improve thumbnails color - tooltip drawing - resolution tag upload
2020-12-26BlenderKit: improve ratingsVilém Duha
Trash old BGL code and UI Fix menu access and enable it for all users Fix width of the fast rating operator for validators Autotags for HDR's (only resolutions)
2020-12-22BlenderKit: category layout for fast category editing toolVilém Duha
and fix for HDR thumbnail generation code - still not perfect but sets view transform to raw during .jpg save and this causesthe image to look closer. If it will be displayed as linear or non-color in asset bar, it will fit perfectly.
2020-12-22BlenderKit: improve category upload drawing.Vilém Duha
Now this works automatically from the categories as specified on the server
2020-12-22BlenderKit: multiple improvements:Vilém Duha
HDR and scene asset types - These are now available when user enables experimental features in addon preferences. Refactor Upload - no Blender instance isn't launched when not needed and everything happens in a thread, so no waiting for the user when e.g. updating metadata. improve pasted asset_id string Change asset type picking interface to fit more asset types Notify user about brush mode needs Update categories file
2020-12-22BlenderKit: slight improvement to the model thumbnailer, mainly more ↵Vilém Duha
balanced background lighting
2020-12-16BlenderKit: drawing custom icon crashes blender, disabling some code at ↵Vilém Duha
least until it's fixed.
2020-12-09BlenderKit: improve model thumbnail generatorVilém Duha
2020-12-07BlenderKit: unrated_only wasn't in common property group,Vilém Duha
caused material and brush search to fail
2020-12-06BlenderKit: fix possible error when loading preferences.Vilém Duha
2020-12-06BlenderKit: allow search of non-rated assetsVilém Duha
2020-12-06BlenderKit:Vilém Duha
enable 3-level categories for category reorganization.
2020-12-06BlenderKit: fast changing of categories for assetsVilém Duha
this tool will probably evolve in fast metadata editing, for now it should help to fix category system.
2020-12-05BlenderKit: switch to pointers when checking UI areasVilém Duha
improve tooltip for resolutions
2020-12-05BlenderKit: forgot to uncomment resolution upload codeVilém Duha