diff --git a/README.md b/README.md index e8a517f..af78a2e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Viewer for `.mesh` model files as consumed by OGRE as well as any format [suppor [Portable Windows Package](https://github.com/OGRECave/ogre-meshviewer/releases) # Dependencies -* [ogre-python](https://pypi.org/project/ogre-python/) >= 14.2 +* [ogre-python](https://pypi.org/project/ogre-python/) >= 14.3 * python3 # Usage diff --git a/ogre_mesh_viewer.py b/ogre_mesh_viewer.py index 23f8777..e44c2e8 100755 --- a/ogre_mesh_viewer.py +++ b/ogre_mesh_viewer.py @@ -198,9 +198,12 @@ def __init__(self, app): def draw_about(self): flags = ImGui.WindowFlags_AlwaysAutoResize self.show_about = ImGui.Begin("About OgreMeshViewer", self.show_about, flags)[1] - ImGui.Text("By Pavel Rojtberg") - ImGui.Text("OgreMeshViewer is licensed under the MIT License.") - ImGui.Text("See LICENSE for more information.") + ImGui.TextLinkOpenURL("OgreMeshViewer", "https://github.com/OGRECave/ogre-meshviewer") + ImGui.SameLine(0, 0) + ImGui.Text(" is licensed under the ") + ImGui.SameLine(0, 0) + ImGui.TextLinkOpenURL("MIT License.", "https://github.com/OGRECave/ogre-meshviewer/blob/master/LICENSE") + ImGui.Text("by Pavel Rojtberg and contributors.") ImGui.Separator() ImGui.BulletText(f"Ogre: {Ogre.__version__}") ImGui.BulletText(f"ImGui: {ImGui.GetVersion()}")