remove multiline

This commit is contained in:
2025-10-12 12:11:59 +02:00
parent e3eb1c8d48
commit c9a404d634
10 changed files with 55 additions and 174 deletions

View File

@@ -20,7 +20,7 @@ ENABLED_FEATURES = ["basic", "preview"] if VERSION_TYPE == "free" else [
"basic", "preview", "presets", "normal_maps", "batch_processing",
"image_overlays", "basic_utilities", "advanced_utilities", "advanced_styling",
"stroke_effects", "blur_effects", "shadow_glow_effects", "shader_generation",
"text_fitting", "multiline_text"
"text_fitting", "text_editor"
]
# Version-specific limits (applied at build time through file exclusions)
@@ -114,9 +114,9 @@ def has_text_fitting():
"""Check if text fitting is available"""
return has_feature("text_fitting")
def has_multiline_text():
"""Check if multiline text feature is available."""
return has_feature("multiline_text")
def has_text_editor():
"""Check if text editor feature is available."""
return has_feature("text_editor")
def get_max_resolution():
"""Get maximum texture resolution based on version"""
@@ -139,7 +139,7 @@ def should_show_feature_lock(feature_name):
'shadow_glow_effects': has_shadow_glow_effects,
'shader_generation': has_shader_generation,
'text_fitting': has_text_fitting,
'multiline_text': has_multiline_text
'text_editor': has_text_editor
}
if is_full_version():