UI: Remove Tutorials from Help menu

As mentioned in !146730, blender.org does not provide a list of
tutorials anymore, instead, the "Support" section has links to user
communities, enterprise support, and mentions tutorials as part of
a community activity.

Also add "Get Involved", which is a hub for inviting contributors in
all areas.

Pull Request: https://projects.blender.org/blender/blender/pulls/147414
This commit is contained in:
Pablo Vazquez
2025-10-07 13:10:39 +02:00
committed by Pablo Vazquez
parent b9e1e2a8ee
commit 14cf38a49e

View File

@@ -585,10 +585,10 @@ class TOPBAR_MT_help(Menu):
show_developer = context.preferences.view.show_developer_ui
layout.operator("wm.url_open_preset", text="Manual", icon='URL').type = 'MANUAL'
layout.operator("wm.url_open_preset", text="Release Notes").type = 'RELEASE_NOTES'
layout.operator("wm.url_open", text="Tutorials").url = "https://www.blender.org/tutorials"
layout.operator("wm.url_open", text="Support").url = "https://www.blender.org/support"
layout.operator("wm.url_open", text="User Communities").url = "https://www.blender.org/community/"
layout.operator("wm.url_open", text="Get Involved").url = "https://www.blender.org/get-involved/"
layout.operator("wm.url_open_preset", text="Release Notes").type = 'RELEASE_NOTES'
layout.separator()