move to legacy addon

This commit is contained in:
2025-10-09 23:36:10 +02:00
parent 3618699504
commit 205aa7c421
187 changed files with 33643 additions and 168 deletions

View File

@@ -3,7 +3,7 @@ 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"),
@@ -27,8 +27,8 @@ def get_version_limits():
"""Get version-specific limits."""
if VERSION_TYPE == "free":
return {
"max_texture_size": 1024,
"max_concurrent_operations": 1
"max_texture_size": 4096,
"max_concurrent_operations": 4
}
else:
return {