diff --git a/CHANGELOG.md b/CHANGELOG.md index cb3d5f0..0b157d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/blender_manifest.toml b/blender_manifest.toml index 827e90e..7374fcc 100644 --- a/blender_manifest.toml +++ b/blender_manifest.toml @@ -8,7 +8,7 @@ tagline = "Simple Collider is a Blender addon to create physics colliders for ga maintainer = "Matthias Patscheider " 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"] diff --git a/preferences/preferences.py b/preferences/preferences.py index 2639452..978cdf1 100644 --- a/preferences/preferences.py +++ b/preferences/preferences.py @@ -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() diff --git a/ui/properties_panels.py b/ui/properties_panels.py index b2b7e64..2aa7fd2 100644 --- a/ui/properties_panels.py +++ b/ui/properties_panels.py @@ -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() @@ -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 @@ -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