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-10-03BlenderKit: forgot one instance of the save_mainfile call in previous fixVilem Duha
fixes crash of background blender during asset unpacking
2021-10-03BlenderKit fix bg blender crash due to new file preview codeVilem Duha
A new preview code from 6th september crashes Blender when saving files in background mode. This circumvents the bug by now.
2021-10-03BlenderKit: automatically purge collections created by the addonVilem Duha
If the collection is empty, it gets removed on file save. This will only work in new files, since the collections now get a 'is_blenderkit_collection' property when appending. Don't registter timers when in background
2021-10-02BlenderKit: basic asset_browser compatibilityVilem Duha
fix default search report blender version instead of addon version during search
2021-09-24BlenderKit: Temp hack following `proxy_make` operator removal.Bastien Montagne
The addon needs to be properly updated to use overrides, but for now allow it to keep working without accessing non-existant API. Ping Vilem Duha (@pildanovak) too.
2021-09-10BlenderKit: Reflect change in scoring algorithmVilem Duha
fix minor bug when creator fills 0 as texture size in material.
2021-08-12BlenderKit: fixes for HDRsVilem Duha
Now HDRs are clearly separated between true HDR files and simple 360 photos. the 360 photos are hidden in search filter by default. Also fixed version check for HDRs and several little tweaks to UI
2021-08-11Cleanup: strip trailing space, remove BOMCampbell Barton
2021-08-07BlenderKit: search by collection/ desginer/designCollectionVilem Duha
also fix fetching ratings for validators.
2021-07-31BlenderKit: fix occasional thumbnail path errorsVilem Duha
Also fix upload popup not showing up for private re-uploads.
2021-07-31BlenderKit: hide extra objects when appending collectionVilem Duha
All extra objects that are appended thanks to their link through geometry nodes, bone shapes and others are now hidden to a new subcollection.
2021-07-30Cleanup: quiet warnings for tooltips ending with '.'Campbell Barton
2021-07-28BlenderKit: fix asset bar not closing on drag dropVilem Duha
2021-07-27BlenderKit cleanup and minor fix in new search code thumbnail download threadsVilem Duha
2021-07-27BlenderKit: optimize searchVilem Duha
quite a large overhaul of how search results are loaded. this saves time due to not closing the session and enabling small previews to be first. Also use the dict_param paraameter so that the results responses are a bit smaller.
2021-07-26BlenderKit: move search props to window managerVilem Duha
2021-07-23BlenderKit: warn on assets from newer Blender versions in popup cardVilem Duha
2021-07-23BlenderKit: make it clear when a filter is usedVilem Duha
this required a new icon for filters and an update function.
2021-07-23BlenderKit: optimize store_rating_local_emptyVilem Duha
Add quality limit slider for models and materials search
2021-07-23BlenderKit: close popup menu when it makes sense after running an operatorVilem Duha
2021-07-20BlenderKit: fixes and optimizationsVilem Duha
Search results aren't passed around back to search and are parsed only once. Same for previews. Search function could run many times per second when more pages were loaded. Search now causes almost no lag in Blender thanks to the fixes Default page size in search request is now fit to the asset bar size settings. several optimizations in the draw code - is now about 3x faster rerequests now can return a fake response in case of a timeout
2021-07-20BlenderKit: cleanup and minor fixesVilem Duha
fix stars for validators cleanup dragging property and bring it to the new drag drop operator - needed to inform search to wait with updating results when dragging is active.
2021-07-13BlenderKit: show categories and filters in header search UIVilem Duha
Use hand curor over asset bar
2021-07-12BlenderKit: split finally drag-drop from asset barVilem Duha
the new operator is now used. -proper support for alll object types click and drag - drop for all assets optimize drawing of asset bar, should be faster. fix a bug when rating requests didn't return proper results asset popup now has drag-drop button and can be closed with X button big cleanup of assetbar code
2021-07-12BlenderKit: Fix autothumb for materials - scale wasn't applied on the ↵Vilem Duha
preview object This caused displacement to render incorrectly sized on scaled preview objects support more objects for drag-drop materials don't show ratings for private objects
2021-07-07BlenderKit: fix an error when trying to assign material to unsupported ↵Vilem Duha
object type -do same warning for drag-drop although that can be now further improved since it seems ray cast to other object types works already) -remove some old prints
2021-07-04BlenderKit: fix category displayVilem Duha
was actually showing slugs, now shows names with links fix long descriptions issue - now has a 'more' button to read the rest online (label_multiline now has a max_lines parameter and returns True if max lenght was reached) fix avatars to match server
2021-07-01BlenderKit: many post-release fixesVilem Duha
Fix for rerequests recursion crash rename timers fix manual link attemt to fix mysterious crashes on some machines by limiting some calls to assetbar operator, and not copying image into it's preview so often fix search when & was present add a popup when appending a scene improve starup dialog with an image
2021-07-01BlenderKit: draw categories in asset cardVilem Duha
Enable user's ratings request for all users.
2021-05-23BlenderKit: improve ratings UIVilem Duha
OK button removed from popup rating fixed a bug in fetching user's ratings from server
2021-05-21BlenderKit: fetch user's ratings from serverVilem Duha
by now enabled only for validators, to test performance. Also shows to validator which assets were not yet rated by them.
2021-05-19BlenderKit: UI fixesVilem Duha
Right clicking assetbar in a space where is no asset displayed did throw an error several minor tooltip/layout fixes.
2021-05-17BlenderKit: minor UI fixesVilem Duha
2021-05-14BlenderKit: ratings fixesVilém Duha
2021-05-12BlenderKit: small UI fixesVilém Duha
main problem was doubling of asset name first letter due to a typo
2021-05-11BlenderKit: Fix replace active model buttonVilém Duha
Dowload operator invoke had no return in some cases
2021-05-11BlenderKit: fix ratingon LinuxVilém Duha
also introduce simple visual feedback in the interface, using the heart icon.
2021-05-11BlenderKit: fixes to UI of ratings and asset popup cardVilém Duha
2021-05-11BlenderKit: display file size in asset card and increase addon versionVilém Duha
2021-05-05BlenderKit: fix full/free swapVilém Duha
The new enum was swapping the original order of full/free as false/true Some assets that were uploaded from 2.92 and older but partially updated from 2.93 will have to be fixed.
2021-05-02BlenderKit: cleanup and code de-duplicationVilém Duha
with some tiny tweaks to how asset card works
2021-05-01BlenderKit: minor tweaks to asset card layoutVilém Duha
- some code cleanup - labels with tooltips (an empty operator that enables this, drawing it non-emobssed)
2021-04-30BlenderKit: minor ui fixes and cleanupVilém Duha
2021-04-30BlenderKit: fix layout of the floating previewVilém Duha
was unorganized after recent cleanup -cleaned part of the old code
2021-04-29BlenderKit: fixes for right-click menuVilém Duha
- Ratings were not sent to server - changed icon for complexity/work hours - many small tweaks, finishing ratings_utils refactor - adding various parameters to details -
2021-04-29BlenderKit: improve right click menuVilém Duha
-basically a complete revamp of the code, enables to display asset information in a much cleaner way with more tooltips e.t.c. -simplified floating asset preview - name needs to be fixed still, and tooltip generation cleaned -added several new icons, deleted one unused -improve a lot of tooltips -fix rerender of thumbnails in unsaved files (would save assets into addon directory) -reorganize some rating functions into ratings_utils.py -new 'wrap' operator for web links, allows to have custom tooltips for each link
2021-04-26BlenderKit:fixesVilém Duha
- improve material and model thumbnailers -Now it's possible to re-render assets directly from right-click menu. -fix appending of assets with wrong name -several fixes for experimental asset bar - small fixes in bg_blender for background operations - material thumbnailer background fixed - draw upload thumbnail in upload UI
2021-04-16BlenderKit: Fix Documentation URLAaron Carlisle
2021-04-09BlenderKit: improve drag-drop in original asset barVilém Duha
2021-04-09BlenderKit: remove forgotten printsVilém Duha