Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to Simple Collider are documented here. Dates are set when
a version is actually tagged/released.

Each version below mirrors the structure used on the
[documentation site's release notes page](https://weisl.github.io/collider_overview/simple_collider/collider_release_notes/):
[documentation site's release notes page](https://weisl.github.io/simple_collider/collider_release_notes/):
a short summary of the release, followed by "Features & Improvements" and
"Bug Fixes" lists whose entries link back to their GitHub issue. New releases
are added as a new section above the previous one — existing entries are
Expand Down
2 changes: 1 addition & 1 deletion blender_manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tagline = "Simple Collider is a Blender addon to create physics colliders for ga
maintainer = "Matthias Patscheider <patscheider.matthias@gmail.com>"
type = "add-on"

website = "https://weisl.github.io/collider_overview/"
website = "https://weisl.github.io/simple_collider/collider_overview/"

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

Expand Down
2 changes: 1 addition & 1 deletion preferences/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def draw_naming_panel(self, layout):
row.menu('OBJECT_MT_collision_presets', text=OBJECT_MT_collision_presets.bl_label)
row.operator(COLLISION_preset.bl_idname, text="", icon='ADD')
row.operator(COLLISION_preset.bl_idname, text="", icon='REMOVE').remove_active = True
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/collider_import_engines/"
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/simple_collider/collider_import_engines/"

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

Expand Down
6 changes: 3 additions & 3 deletions ui/properties_panels.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ def draw_header(self, context):
# Open documentation
layout = self.layout
row = layout.row(align=True)
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/collider_overview/"
row.operator("wm.url_open", text="", icon='HELP').url = "https://weisl.github.io/simple_collider/collider_overview/"

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

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

def draw(self, context):
layout = self.layout
Expand Down
Loading