Skip to content

Commit 51d43f6

Browse files
committed
Update Urls
1 parent d6b1480 commit 51d43f6

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to Simple Collider are documented here. Dates are set when
44
a version is actually tagged/released.
55

66
Each version below mirrors the structure used on the
7-
[documentation site's release notes page](https://weisl.github.io/collider_overview/simple_collider/collider_release_notes/):
7+
[documentation site's release notes page](https://weisl.github.io/simple_collider/collider_release_notes/):
88
a short summary of the release, followed by "Features & Improvements" and
99
"Bug Fixes" lists whose entries link back to their GitHub issue. New releases
1010
are added as a new section above the previous one — existing entries are

blender_manifest.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tagline = "Simple Collider is a Blender addon to create physics colliders for ga
88
maintainer = "Matthias Patscheider <patscheider.matthias@gmail.com>"
99
type = "add-on"
1010

11-
website = "https://weisl.github.io/collider_overview/"
11+
website = "https://weisl.github.io/simple_collider/collider_overview/"
1212

1313
tags = ["3D View", "Scene", "User Interface"]
1414

preferences/preferences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def draw_naming_panel(self, layout):
255255
row.menu('OBJECT_MT_collision_presets', text=OBJECT_MT_collision_presets.bl_label)
256256
row.operator(COLLISION_preset.bl_idname, text="", icon='ADD')
257257
row.operator(COLLISION_preset.bl_idname, text="", icon='REMOVE').remove_active = True
258-
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/collider_import_engines/"
258+
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/simple_collider/collider_import_engines/"
259259

260260
row.operator("simple_collider.open_folder", text='', icon='FILE_FOLDER').directory = collider_presets_folder()
261261

ui/properties_panels.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ def draw_header(self, context):
567567
# Open documentation
568568
layout = self.layout
569569
row = layout.row(align=True)
570-
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/collider_overview/"
570+
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/simple_collider/collider_overview/"
571571

572572
# Open Preferences
573573
addon_name = get_addon_name()
@@ -629,7 +629,7 @@ def draw_header(self, context):
629629
layout = self.layout
630630
row = layout.row(align=True)
631631
row.operator('view.collider_view_object', icon='HIDE_OFF', text='Collider Groups')
632-
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/collider_groups/"
632+
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/simple_collider/collider_groups/"
633633

634634
def draw(self, context):
635635
layout = self.layout
@@ -700,7 +700,7 @@ def draw_header(self, context):
700700
row = layout.row(align=True)
701701
row.operator('view.collider_view_material', icon='HIDE_OFF', text='Physics Materials')
702702
row.operator("wm.url_open", text="",
703-
icon='HELP').url = "https://weisl.github.io/collider_physics_materials/"
703+
icon='HELP').url = "https://weisl.github.io/simple_collider/collider_physics_materials/"
704704

705705
def draw(self, context):
706706
layout = self.layout

0 commit comments

Comments
 (0)