Info Header / URLs: Fix community link + https'ification.

This commit is contained in:
Aaron Carlisle
2016-05-08 23:38:41 +02:00
committed by Thomas Dinges
parent 98e2135a2d
commit 5fe1bea2da

View File

@@ -300,16 +300,16 @@ class INFO_MT_help(Menu):
def draw(self, context): def draw(self, context):
layout = self.layout 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.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.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="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="Developer Community", icon='URL').url = "https://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="User Community", icon='URL').url = "https://www.blender.org/support/user-community"
layout.separator() 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.separator()
layout.operator("wm.url_open", text="Python API Reference", icon='URL').url = bpy.types.WM_OT_doc_view._prefix layout.operator("wm.url_open", text="Python API Reference", icon='URL').url = bpy.types.WM_OT_doc_view._prefix