[Bf-blender-cvs] [8fb8a6529fa] master: OBJ: remove "experimental" from C++ based importer/exporter, mark Python legacy

Aras Pranckevicius noreply at git.blender.org
Mon Jul 4 18:12:49 CEST 2022


Commit: 8fb8a6529fa64d6e17042cdf469d9920eb939660
Author: Aras Pranckevicius
Date:   Mon Jul 4 19:10:13 2022 +0300
Branches: master
https://developer.blender.org/rB8fb8a6529fa64d6e17042cdf469d9920eb939660

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

===================================================================

M	release/datafiles/locale
M	release/scripts/addons
M	release/scripts/startup/bl_ui/space_topbar.py

===================================================================

diff --git a/release/datafiles/locale b/release/datafiles/locale
index 9a85b137951..055bc5223c1 160000
--- a/release/datafiles/locale
+++ b/release/datafiles/locale
@@ -1 +1 @@
-Subproject commit 9a85b13795157560b319235c63f5a13b0107ba41
+Subproject commit 055bc5223c1cd249e32ccbc8e8796ba9925c8c33
diff --git a/release/scripts/addons b/release/scripts/addons
index 807a64cdfc5..403b95ef6ff 160000
--- a/release/scripts/addons
+++ b/release/scripts/addons
@@ -1 +1 @@
-Subproject commit 807a64cdfc50de1cfb263f2eb68680feddb66ec7
+Subproject commit 403b95ef6ff38918de966ed2a5843cfa3274a58b
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index d8bd724f554..31ecd67eb08 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -457,7 +457,7 @@ class TOPBAR_MT_file_import(Menu):
             self.layout.operator("wm.gpencil_import_svg", text="SVG as Grease Pencil")
 
         if bpy.app.build_options.io_wavefront_obj:
-            self.layout.operator("wm.obj_import", text="Wavefront (.obj) (experimental)")
+            self.layout.operator("wm.obj_import", text="Wavefront (.obj)")
         if bpy.app.build_options.io_stl:
             self.layout.operator("wm.stl_import", text="STL (.stl) (experimental)")
 
@@ -485,7 +485,7 @@ class TOPBAR_MT_file_export(Menu):
                 self.layout.operator("wm.gpencil_export_pdf", text="Grease Pencil as PDF")
 
         if bpy.app.build_options.io_wavefront_obj:
-            self.layout.operator("wm.obj_export", text="Wavefront (.obj) (experimental)")
+            self.layout.operator("wm.obj_export", text="Wavefront (.obj)")
 
 
 class TOPBAR_MT_file_external_data(Menu):



More information about the Bf-blender-cvs mailing list