This commit is contained in:
2025-10-14 12:23:58 +02:00
parent cf4f3ce564
commit f8dc03caf9
21 changed files with 384 additions and 43 deletions

View File

@@ -3,12 +3,12 @@ Constants and metadata for the Text Texture Generator addon.
"""
# Version information
VERSION_TYPE = "free" # "free" or "full"
VERSION_TYPE = "full" # "free" or "full"
bl_info = {
"name": "Text Texture Generator" + (" Free" if VERSION_TYPE == "free" else " Full"),
"author": "Marc Mintel <marc@mintel.me>",
"version": (1, 0, 0),
"version": (1, 1, 0),
"blender": (4, 0, 0),
"location": "3D View > Sidebar (N) > Tool Tab | Shader Editor > Sidebar > Tool Tab",
"description": "Generate image textures from text with accurate dimensions and instant live preview" + (" - Free Version (Limited Features)" if VERSION_TYPE == "free" else " - Full Version"),
@@ -28,7 +28,7 @@ def get_version_limits():
"""Get version-specific limits."""
if VERSION_TYPE == "free":
return {
"max_concurrent_operations": 1
"max_concurrent_operations": 4
}
else:
return {