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-09-16BlenderKit: fix assets rating problem from last commitVilém Duha
2020-09-16BlenderKit: update to ray_cast api changeVilém Duha
2020-09-16BlenderKit: several fixesVilém Duha
Files size was drawn wrong when more pages were loaded Trying to fix crashes with timers (probablility is now lower in testing, but might still happen) - don't access context at all.
2020-09-10BlenderKit: fix cancelling of downloadVilém Duha
until now, cancelling a download always cancelled the last download, not the one clicked on
2020-08-23BlenderKit: update ray_cast to new API requirement (view_layer instead of ↵Vilém Duha
depsgraph)
2020-08-23BlenderKit: fix right click menuVilém Duha
this could sometimes represent a different asset when corrupt assets are present.
2020-08-23Merge branch 'blender-v2.90-release'Vilém Duha
# Conflicts: # object_collection_manager/__init__.py
2020-08-12BlenderKit: fix fast rating operatorVilém Duha
also fix one small bug when uploading
2020-08-05Update calls to `Scene.ray_cast()` to pass depsgraph instead of view layerSybren A. Stüvel
This is in light of the change in Blender rBe03d53874dac5f.
2020-08-04BlenderKit: fix uploadVilém Duha
-upload was broken since changes in append_link - fake context wasn't possible there,reverting to old append method in such case. -also assets inside assets could cause problem with ratings drawing check
2020-08-04BlenderKit: fix appending of assetsVilém Duha
This would unnecessarily create full copies instead of linked objects (as linked data, not linked from outer file)
2020-07-30BlenderKit: fix several issues caused by context.copy()Vilém Duha
now creating simple context everywhere instead of the context.copy() which actually: - could not work if other addons were creating any custom subclasses on context - managed to crash blender in my tests.
2020-07-29BlenderKit: fix appendingVilém Duha
-this was broken due to API changes. Also no need for so much magic now since the default append just works well. -fix a bug in previous commit (asset update) (cherry picked from commit 3bdb5f41aea4897762edd09a71b0bfa8b0b7bc10)
2020-07-29BlenderKit: fix data updateVilém Duha
-older fines could act as broken (cherry picked from commit e1dae55cca702ef4a140a455d88099d666230c8c)
2020-07-29BlenderKit: Rating refactoringsVilém Duha
This mainly paves a way for removing the old and clumsy bgl UI and enable faster rating for users. -Rating Ui is now more responsive -it can be dragged over the stars widget. -fast rating operator (f shortcut over assetbar) -wip on new ratings panel(disabled by now) -if author didn't provide his webpage, the link now leads to his profile on the BlenderKit site. -upload was partially broken thanks to a small bug -perpendicular snap - This limits angled snapping in a reasonable way, should help when placing foliage or items on sloped ceilings e.t.c. -removed the first_run property, it's replaced with a poput that informs the user about connecting to the internet. (cherry picked from commit 8f6903bc92531aa8e5d4c64a0a108c2904506a83)
2020-07-29BlenderKit: on-registration popupVilém Duha
This popup informs the user that BlenderKit connects to the internet directly after registration, and asks for consent with it and also performs first search. (cherry picked from commit 00fefe2d147288e3a218d640668b54331e82d3e8)
2020-07-29BlenderKit: fix login after token refresh fails.Vilém Duha
Now offers a popup to login on site, previously only reported about invalid token, which wasn't clear to many users. (cherry picked from commit c52cfd99ff31f7554cc998c69382d1c8dd7ed8ed)
2020-07-12BlenderKit: fix rating interactionVilém Duha
-disabled layout didn't work(thanks to another blender layout bug that I reported) -replaced it with an enum, and also a popup that informs the user instead.
2020-07-12BlenderKit: fix T70890Vilém Duha
this is a complex fix that required to change some basic behaviours. - the temp folder from blenderkit_data was moved to system temp folder - There's a cleanup function for the old folder. - search itself doesn't create files on drive(this rework will continue to try not to write also some other data, like gravatars, but cache them in mem only) further fixes: - assetbar woudln't draw if there wasn't a thumbnail in an asset - categories panel poll function was fixed for brushes - fetching tokens from rerequests wasn't writing them into prefs TODO: create a popup that asks if categories can be downloaded and an example search can be performed.
2020-07-12BlenderKit: switch thumbnails to sRGBVilém Duha
previously, Blender was double color correcting the images, so these were set to linear by the addon. This was obviously fixed, so BlenderKit thumbnails looked lighter.
2020-07-12BlenderKit: fix search by author verification statusVilém Duha
fix ratings drawing for not logged in users fix ratings update function(was reacting to quality rating)
2020-07-01BlenderKit: fix search filtersVilém Duha
-procedural search wasn't working properly -displaying files size in tooltip was broken -search by files size had misleading description -small UI fixes. -fix link to plans
2020-07-01BlenderKit: reorganize panels to subpanelsVilém Duha
makes categories ando others foldable. rename advanced search to search filters, these now work always when switched on (previously the 'advanced' option switched them all on/off)
2020-07-01BlenderKit: fix replace model, was broken.Vilém Duha
-should also WIP work in selected model panel. -deleted commented out filtering code
2020-07-01BlenderKit: add use_timers to debug timers and check stability issuesVilém Duha
rename several asset data dict properties to be serverdata-compatible - this needed an update function on scene load for older scenes. draw asset context menu also in selected model panel remove brush mode filtering from search code(is filtered in Elastic for some time already)
2020-06-16Fix blenderkit causing assertCampbell Barton
Setting the label for a registered operator isn't supported, this looks to be test code left in by accident, it does nothing or asserts in debug mode.
2020-06-15BlenderKit: fix subdirectory path for users if they input absolute/nonvalid ↵Vilém Duha
relative path
2020-06-15BlenderKit: fix missing importVilém Duha
2020-05-27BlenderKit: block the clipboard monitoring featureVilém Duha
2020-05-27BlenderKit: FixesVilém Duha
rating showing to non-logged in users Upload wasn't showing proper error message when not logged in too. Replace selected models wasn't shown with no active object First registration search wasn't shown. Sorting of uploaded assets for validators was reversed
2020-05-27BlenderKit: fix various typosVilém Duha
2020-05-27BlenderKit: fix spelling mistakeVilém Duha
2020-05-07BlenderKit: block clipboard reading on linuxVilém Duha
This was causing T73507
2020-05-07BlenderKit: fix bring to sceneVilém Duha
2020-04-03BlenderKit: fix T73507Vilém Duha
This could hopefully work. While I managed to finally reproduce the bug, I manged to get it not to happen without actually finding the reason for the keys getting stuck. The reason seem to be persistent timers.
2020-04-03BlenderKit: fix a problem with global dictVilém Duha
wasn't found if the path changed and this broke registration of addon.
2020-03-26BlenderKit: fix ratingsVilém Duha
-rating was virtually possible even if not logged in, but in reality the user couldn't rate on server. -ratings were sent far too often to server thanks to an extra call.
2020-03-18BlenderKit: fixesVilém Duha
-first run now saves preferences to not appear again on each blender start -fix possible error with assetbar shortcuts (wrong index) -validation - update status in search results on verification status change
2020-03-06Addons: Use Manual URL prefixAaron Carlisle
2020-03-05Cleanup: tabs -> spacesCampbell Barton
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2020-02-24BlenderKit: attempt to fix asset bar hang bugVilém Duha
-caused by wrong order of checks in the modal operator add 'first run' assetbar appearance, helpful for first time users. Improve clipboard checking tweak asset locked message add plans to profile panel
2020-02-11BlenderKit: fix bugsv2.82Vilém Duha
clipboard pasting not working at all, kind of a showstopper, and an error in Rating drawing that spammed console. several tooltips fixed
2020-02-10BlenderKit: fix material drag dropVilém Duha
was broken due to inverted conditiion
2020-02-08BlenderKit: fix assetbar not reactingVilém Duha
commenting outh the fix for the mouse in assetbar function, needs more triage
2020-02-07BlenderKit: hotfix - Yesterday's commit broke assetbar codeVilém Duha
accidentally had unfinished asset bar code fix (which improves mouse_in_assetbar function)
2020-02-07BlenderKit: fix occasional crash during reordering.Vilém Duha
It was caused with order of unregistration, now UI panels go first. also separated advanced search panel
2020-02-06BlenderKit: several fixes - oauth errorsVilém Duha
authentication errors drag drop on cameras/lights threw an error undo push message Ready status for validation status search
2020-02-06BlenderKit: Fix rating updates for panel.Vilém Duha
Fix a bug in upload when checking image /procedural assets Fix oauth return values in case of error Fix fetching of authors through search api instead of profiles. Fix task_queue with multiple tasks of the same by enabling stashing Fix selected asset panel, rename it to selected model by now (not supporting other assets now)
2020-02-03Fix blenderkit unable to unregisterDalai Felinto