Extensions: Rename experimental feature name, description and task

New name: Extensions

Now that we are gettting closer to a launch I need to refer to this
feature in the documentation. As such it was time to bring it up to
date.

I'm also pointing the experimental feature to the task where the Alpha
launch is being coordinated (#117286). Once that task is all ticked we
will likely be ready to go out of experimental.
This commit is contained in:
Dalai Felinto 2024-02-17 15:29:40 +01:00 committed by Dalai Felinto
parent a0d453ccad
commit c9d506ba18
2 changed files with 5 additions and 8 deletions

View File

@ -2671,7 +2671,7 @@ class USERPREF_PT_experimental_prototypes(ExperimentalPanel, Panel):
({"property": "use_grease_pencil_version3"}, ("blender/blender/projects/6", "Grease Pencil 3.0")),
({"property": "use_new_matrix_socket"}, ("blender/blender/issues/116067", "Matrix Socket")),
({"property": "enable_overlay_next"}, ("blender/blender/issues/102179", "#102179")),
({"property": "use_extension_repos"}, ("/blender/blender/issues/106254", "#106254")),
({"property": "use_extension_repos"}, ("/blender/blender/issues/117286", "#117286")),
),
)

View File

@ -7156,13 +7156,10 @@ static void rna_def_userdef_experimental(BlenderRNA *brna)
RNA_def_property_update(prop, 0, "rna_userdef_ui_update");
prop = RNA_def_property(srna, "use_extension_repos", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_ui_text(
prop,
"Extension Repositories",
"Enables extension repositories, "
"accessible from the \"Extension Repositories\" panel in the "
"\"File Paths\" section of the preferences. "
"These paths are exposed as add-ons, package management is not yet integrated");
RNA_def_property_ui_text(prop,
"Extensions",
"Enables support for extensions, accessible from the \"Extensions\" "
"section of the preferences.");
RNA_def_property_boolean_funcs(
prop, nullptr, "rna_PreferencesExperimental_use_extension_repos_set");
}