From 75b26810332be4720c35fc688012242520b41df2 Mon Sep 17 00:00:00 2001 From: Aras Pranckevicius Date: Sat, 23 Dec 2023 23:08:30 +0200 Subject: [PATCH] STL: mark python addon as legacy (built-in C++ one exists now) --- io_mesh_stl/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py index 75327083..8d711300 100644 --- a/io_mesh_stl/__init__.py +++ b/io_mesh_stl/__init__.py @@ -3,7 +3,7 @@ # SPDX-License-Identifier: GPL-2.0-or-later bl_info = { - "name": "STL format", + "name": "STL format (legacy)", "author": "Guillaume Bouchard (Guillaum)", "version": (1, 1, 3), "blender": (2, 81, 6), @@ -60,7 +60,7 @@ from bpy.types import ( @orientation_helper(axis_forward='Y', axis_up='Z') class ImportSTL(Operator, ImportHelper): bl_idname = "import_mesh.stl" - bl_label = "Import STL" + bl_label = "Import STL (legacy)" bl_description = "Load STL triangle mesh data" bl_options = {'UNDO'} @@ -190,7 +190,7 @@ class STL_PT_import_geometry(bpy.types.Panel): @orientation_helper(axis_forward='Y', axis_up='Z') class ExportSTL(Operator, ExportHelper): bl_idname = "export_mesh.stl" - bl_label = "Export STL" + bl_label = "Export STL (legacy)" bl_description = """Save STL triangle mesh data""" filename_ext = ".stl" @@ -403,11 +403,11 @@ class STL_PT_export_geometry(bpy.types.Panel): def menu_import(self, context): - self.layout.operator(ImportSTL.bl_idname, text="Stl (.stl)") + self.layout.operator(ImportSTL.bl_idname, text="Stl (.stl) (legacy)") def menu_export(self, context): - self.layout.operator(ExportSTL.bl_idname, text="Stl (.stl)") + self.layout.operator(ExportSTL.bl_idname, text="Stl (.stl) (legacy)") classes = (