From 403b95ef6ff38918de966ed2a5843cfa3274a58b Mon Sep 17 00:00:00 2001 From: Aras Pranckevicius Date: Mon, 4 Jul 2022 19:09:11 +0300 Subject: OBJ: remove "experimental" from C++ based importer/exporter, mark Python legacy By now I'm not aware of any serious regressions or missing functionality in the C++ based OBJ importer/exporter. They have more features (vertex colors support), and are way faster than the Python based importer/exporter. Reviewed By: Thomas Dinges, Howard Trickey Differential Revision: https://developer.blender.org/D15360 --- io_scene_obj/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io_scene_obj/__init__.py') diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py index 0ec62410..519b0c85 100644 --- a/io_scene_obj/__init__.py +++ b/io_scene_obj/__init__.py @@ -459,11 +459,11 @@ class OBJ_PT_export_geometry(bpy.types.Panel): def menu_func_import(self, context): - self.layout.operator(ImportOBJ.bl_idname, text="Wavefront (.obj)") + self.layout.operator(ImportOBJ.bl_idname, text="Wavefront (.obj) (legacy)") def menu_func_export(self, context): - self.layout.operator(ExportOBJ.bl_idname, text="Wavefront (.obj)") + self.layout.operator(ExportOBJ.bl_idname, text="Wavefront (.obj) (legacy)") classes = ( -- cgit v1.2.3 From aa5b859302f233bd99469188ad57e61c62977678 Mon Sep 17 00:00:00 2001 From: Aras Pranckevicius Date: Tue, 5 Jul 2022 11:30:50 +0300 Subject: OBJ: mark Python IO legacy in the name too --- io_scene_obj/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io_scene_obj/__init__.py') diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py index 519b0c85..d49f8367 100644 --- a/io_scene_obj/__init__.py +++ b/io_scene_obj/__init__.py @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-or-later bl_info = { - "name": "Wavefront OBJ format", + "name": "Wavefront OBJ format (legacy)", "author": "Campbell Barton, Bastien Montagne", "version": (3, 9, 0), "blender": (3, 0, 0), -- cgit v1.2.3