Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
34dbc72c
Commit
34dbc72c
authored
Jun 16, 2019
by
Vilem Duha
Browse files
Options
Downloads
Patches
Plain Diff
BlenderKit: rename all mentions of standard plan to full
parent
3ffa17c5
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
blenderkit/download.py
+1
-1
1 addition, 1 deletion
blenderkit/download.py
blenderkit/search.py
+1
-1
1 addition, 1 deletion
blenderkit/search.py
blenderkit/ui_panels.py
+3
-3
3 additions, 3 deletions
blenderkit/ui_panels.py
with
5 additions
and
5 deletions
blenderkit/download.py
+
1
−
1
View file @
34dbc72c
...
...
@@ -744,7 +744,7 @@ def get_download_url(asset_data, scene_id, api_key, tcom=None):
return
True
if
r
.
status_code
==
403
:
r
=
'
You need
Standard
plan to get this item.
'
r
=
'
You need
Full
plan to get this item.
'
tcom
.
report
=
r
r1
=
'
All materials and brushes are aviable for free. Only users registered to Standart plan can use all models.
'
tasks_queue
.
add_task
((
ui
.
add_report
,
(
r1
,
5
,
colors
.
RED
)))
...
...
This diff is collapsed.
Click to expand it.
blenderkit/search.py
+
1
−
1
View file @
34dbc72c
...
...
@@ -482,7 +482,7 @@ def get_random_tip(mdata):
"
Click on brushes to link them into scene.
"
,
"
All materials are free.
"
,
"
All brushes are free.
"
,
"
Locked models are available if you subscribe to
standard
plan.
"
,
"
Locked models are available if you subscribe to
Full
plan.
"
,
"
Login to upload your own models, materials or brushes.
"
,
"
Use
'
A
'
key to search assets by same author.
"
,
"
Use
'
W
'
key to open Authors webpage.
"
,
]
...
...
This diff is collapsed.
Click to expand it.
blenderkit/ui_panels.py
+
3
−
3
View file @
34dbc72c
...
...
@@ -273,11 +273,11 @@ def draw_panel_model_search(self, context):
layout
.
prop
(
props
,
"
search_keywords
"
,
text
=
""
,
icon
=
'
VIEWZOOM
'
)
icon
=
'
NONE
'
if
props
.
report
==
'
You need
Standard
plan to get this item.
'
:
if
props
.
report
==
'
You need
Full
plan to get this item.
'
:
icon
=
'
ERROR
'
label_multiline
(
layout
,
text
=
props
.
report
,
icon
=
icon
)
if
props
.
report
==
'
You need
Standard
plan to get this item.
'
:
layout
.
operator
(
"
wm.url_open
"
,
text
=
"
Get
Standard
plan
"
,
icon
=
'
URL
'
).
url
=
paths
.
BLENDERKIT_PLANS
if
props
.
report
==
'
You need
Full
plan to get this item.
'
:
layout
.
operator
(
"
wm.url_open
"
,
text
=
"
Get
Full
plan
"
,
icon
=
'
URL
'
).
url
=
paths
.
BLENDERKIT_PLANS
layout
.
prop
(
props
,
"
search_style
"
)
layout
.
prop
(
props
,
"
free_only
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment