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-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-03-22BlenderKit: fix upload - asset base id wasn't written to upload files.Vilém Duha
This sadly includes all uploads from 2.92. Also attempt to fix crash coming from the requests module - guarding the requests call with try statement seems to fix the problem.
2021-03-16BlenderKit: improve upload interfaceVilém Duha
Fixed quite a lot of tooltips Brought back a prompt for users to fill in data of the assets. This was accidentally disabled made the asset type enum foldable - takes too much space.
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-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.
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-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-05BlenderKit: resolutionsVilém Duha
This introduces resolutins into the addon. This update should enhance the usability of the addon, especially for people with weaker computers. It downloads reduced version of the assets - only images are scaled down by now. Images are also converted in some cases from .png to .jpgs to save space. - there's a default resolution setting - resolutions can be swapped by user - resolutions apply only to textured models and materials with textures larger than 1024px - Resolutions aren't yet generated on the server, so will be visible after a few days. Version of the addon was bumped up to 1.0.40.
2020-01-28BlenderKit:Vilém Duha
-improve multiline tooltips -change addon category to 3d view, fits a bit more than add mesh -support searching only own assets -support searching for procedural only assets(hiddn by now) -switch off defautl GPU on for thumbnails- this was a bug that went unnoticed for a long time. -add gpu render option directly to thumbnail render dialogs -non-treaded downloading for resolutions -move in utils and rename correctly params_to_dict and dict_to_params -display icon for rejected assets(needs a new icon) -split login panel -rename some panels for more consistency -improve some tooltips
2020-01-07BlenderKit: small background upload optimization(don't create upload scene ↵Vilém Duha
always)
2020-01-07BlenderKit: validation tools improvementsVilém Duha
People who can validate are now recognized from profile info In menu it's possible to put asset on hold besides validation reupload of thumbnails doesn't put asset back to pre-validation state, only main file upload.
2019-09-02BlenderKit: rerequests libraryVilém Duha
this library basically ensures that no server requests should fail if the token is after it's lifetime. it refreshes token and re-tries the request in such cases.
2019-08-12BlenderKit: upload reworked.Vilém Duha
Don't save .blend file , some users didn't like this. Re-upload enables only thumbnail updates. Mark for validation operator removed(was removed from UI several versions ago) ModelUploadOperator renamed to UploadOperator, since it's used for all asset types anyway. Skip .blend preparation in case of thumbnail reupload only
2019-06-01BlenderKit: convert all imports to importlibVilem Duha
+ new Oauth script version (finished in next commit) +split login/signup buttons
2019-05-23BlenderKit: Check better that upload failed.Vilem Duha
2019-05-19BlenderKit: Oauth browser login. No more hassle with API keys for the users. ↵Vilem Duha
Needs testing. renamed get_bkit_url to get_api_url task queue is a new simple module to do tasks, more timed tasks should come here instead of being in assetbar as of now. (download, search checks and more)
2019-04-21BenderKit: fix upload not reporting failed uploads correctly.Vilem Duha
2019-04-21BlenderKit: open free assets for non-registered users.Vilem Duha
2019-04-04silencing print outputs.Vilem Duha
2019-03-29BlenderKit initial commit.Vilem Duha
BlenderKit add-on is the official addon of the BlenderKit service for Blender 3d. (www.blenderkit.com) It enables users to upload, search, download, and rate different assets for blender. It works together with BlenderKit server.