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
2020-01-28BlenderKit: prevent blender crashes + undo fixVilém Duha
Blender tends to crash during unregistration process when some functions still run (like UI) this is a bug that should be reported, however this fixes the problem at least for BlenderKit now. appending an asset now runs undo push operator with faked context - works surprisingly well. improving lots of tooltips. ratings download license display default sorting by uploaded last
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-13BlenderKit: UI typo fixes, and slight optimisation.Vilém Duha
2020-01-09BlenderKit: search field on topVilém Duha
- a dialog box telling the user why an asset is locked -verification status change now in thread - Search UI small changes, getting rid of show assetbar button (now a small eye)
2020-01-07BlenderKit: make download more robustVilém Duha
2020-01-07BlenderKit: replace bpy.context.active_object with ↵Vilém Duha
bpy.context.view_layer.objects.active everywhere. This gives much less issues with context in queue.
2019-11-10BlenderKit: Fix timers failing.Vilém Duha
In some cases timers got unregistered, not sure yet why. This checks if timers are fine regularly. Also fixes unregistration, that sometimes did throw an error.
2019-10-02BlenderKit: small fixes in UI and commentsVilém Duha
2019-10-02BlenderKit: change group naming to collectionsVilém Duha
2019-10-02BlenderKit: automatic append/link detection doesn't switch user's setting now.Vilém Duha
Before it switched the setting, now the switch happens only internally. todo - this should also do reporting to the user as to why appending/linking was switched.
2019-10-01Fix typos in source comments and descriptionsBrecht Van Lommel
Patch contributed by luzpaz. Differential Revision: https://developer.blender.org/D5800
2019-09-10BlenderKit: one more fix for check if an asset was linked or appendedVilém Duha
The state was written before first check, that's why always append was assumed to happen
2019-09-10BlenderKit: fix check for the fact if an asset was linked or appended.Vilém Duha
2019-09-10BlenderKit: replace asset command, present in right-click menu.Vilém Duha
2019-09-10BlenderKit: Fixes:Vilém Duha
- bg_blender timer unregistering after first use - collection linking didn't compare complete paths. - silencing one forgotten print
2019-09-10BlenderKit: switch update functions to independent timers.Vilém Duha
-seems to improve performance, and fixes assets not appending while asset bar is off.
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-20BlenderKit:Vilém Duha
thumbnailer had accidentally set resolution to 50% Try to avoid a rare bug where categories file isn't present (not sure yet as why that happens, but this enables the use of the addon until categories are loaded) Internal Transfer BlendrKit data operator Switch some operators to internal and remove undo from those where it doesn't make sense.
2019-08-07BlenderKit: report error in rare case where URL of file couldn't be ↵Vilém Duha
obtained(reupload of asset with old search results still in blender)
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D5240
2019-06-17BlenderKit: rename all mentions of standard plan to fullVilem Duha
2019-06-13BlenderKit: Make oauth more thread-safe.Vilem Duha
-avoid blender crash in casae of calling hasattr(context, 'view_layer') and others. -autofix process
2019-06-06BlenderKit: refactor reporting to User.Vilem Duha
this is still not very compatible with blender's way of doing things, but we need more lines of reporting for parallel tasks reporting.
2019-06-01BlenderKit: convert all imports to importlibVilem Duha
+ new Oauth script version (finished in next commit) +split login/signup buttons
2019-05-23set a maximum number of retries for downloads.Vilem Duha
2019-05-21BlenderKit: Downloads can now be cancelledVilem Duha
- converted main download thread into object with stop-ability.
2019-05-19BlenderKit: Basic private quota checking works now.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-21BlenderKit: Don't do checks in the background mode or restricted ↵Vilem Duha
context(blender startup)
2019-04-21BlenderKit: Don't run blenderkit checks when running in backgroundVilem Duha
2019-04-21BlenderKit: open free assets for non-registered users.Vilem Duha
2019-04-21BlenderKit: save user preferences if user pastes the API key into the panel ↵Vilem Duha
in 3d view. some users were confused by this, because they didn't save their preferences. Also some users filled in the API key area some other string and then didn't know what they did wrong.
2019-04-04BlenderKit: Silence more printouts and remove fullstops at the end of ↵Vilem Duha
property descriptions.
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.