From 5fe1bea2daecd7670a6a7688a24432e9dce96802 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Sun, 8 May 2016 23:38:41 +0200 Subject: Info Header / URLs: Fix community link + https'ification. --- release/scripts/startup/bl_ui/space_info.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'release/scripts/startup/bl_ui/space_info.py') diff --git a/release/scripts/startup/bl_ui/space_info.py b/release/scripts/startup/bl_ui/space_info.py index 198845792b3..1e476b63b56 100644 --- a/release/scripts/startup/bl_ui/space_info.py +++ b/release/scripts/startup/bl_ui/space_info.py @@ -300,16 +300,16 @@ class INFO_MT_help(Menu): def draw(self, context): layout = self.layout - layout.operator("wm.url_open", text="Manual", icon='HELP').url = "http://www.blender.org/manual" + layout.operator("wm.url_open", text="Manual", icon='HELP').url = "https://www.blender.org/manual" layout.operator("wm.url_open", text="Release Log", icon='URL').url = "http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/%d.%d" % bpy.app.version[:2] layout.separator() - layout.operator("wm.url_open", text="Blender Website", icon='URL').url = "http://www.blender.org" + layout.operator("wm.url_open", text="Blender Website", icon='URL').url = "https://www.blender.org" layout.operator("wm.url_open", text="Blender Store", icon='URL').url = "https://store.blender.org" - layout.operator("wm.url_open", text="Developer Community", icon='URL').url = "http://www.blender.org/get-involved/" - layout.operator("wm.url_open", text="User Community", icon='URL').url = "http://www.blender.org/community/user-community" + layout.operator("wm.url_open", text="Developer Community", icon='URL').url = "https://www.blender.org/get-involved/" + layout.operator("wm.url_open", text="User Community", icon='URL').url = "https://www.blender.org/support/user-community" layout.separator() - layout.operator("wm.url_open", text="Report a Bug", icon='URL').url = "http://developer.blender.org/maniphest/task/create/?project=2&type=Bug" + layout.operator("wm.url_open", text="Report a Bug", icon='URL').url = "https://developer.blender.org/maniphest/task/create/?project=2&type=Bug" layout.separator() layout.operator("wm.url_open", text="Python API Reference", icon='URL').url = bpy.types.WM_OT_doc_view._prefix -- cgit v1.2.3