Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
bl_info = {
"name": "Blendkit Online Asset Library",
"author": "Vilem Duha, Petr Dlouhy, A. Gajdosik, Michal Hons",
"version": (3, 21, 1, 260804), # X.Y.Z.yymmdd
"version": (3, 21, 2, 260827), # X.Y.Z.yymmdd
"blender": (3, 0, 0),
"location": "View3D > Properties > Blendkit",
"description": "Boost your workflow with drag&drop assets from the community driven library.",
"doc_url": "https://github.com/BlenderKit/blenderkit/wiki",
"tracker_url": "https://github.com/BlenderKit/blenderkit/issues",
"category": "3D View",
}
VERSION = (3, 21, 1, 260804)
VERSION = (3, 21, 2, 260827)

import logging
import random
Expand Down
2 changes: 1 addition & 1 deletion blender_manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ schema_version = "1.0.0"

id = "blenderkit"
type = "add-on"
version = "3.21.1-260804" # X.Y.Z-YYYYMMDD, must have a dash instead of a dot
version = "3.21.2-260827" # X.Y.Z-YYYYMMDD, must have a dash instead of a dot

name = "Blendkit Online Asset Library"
tagline = "Drag & drop of assets from the community driven library"
Expand Down
Loading