From f762a3d472c6005cec8a782c845d6db7c666c81b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Morais?= <146729917+SMoraisAnsys@users.noreply.github.com> Date: Mon, 12 Aug 2024 16:39:55 +0200 Subject: [PATCH] CHORE: Update help message with pyside6 info (#280) Co-authored-by: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> --- .../toolkits/antenna/ui/windows/help/help_menu.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/ansys/aedt/toolkits/antenna/ui/windows/help/help_menu.py b/src/ansys/aedt/toolkits/antenna/ui/windows/help/help_menu.py index 1153f2cc8..c3bb9cccb 100644 --- a/src/ansys/aedt/toolkits/antenna/ui/windows/help/help_menu.py +++ b/src/ansys/aedt/toolkits/antenna/ui/windows/help/help_menu.py @@ -9,15 +9,16 @@ import tempfile from ansys.aedt.toolkits.antenna import __version__ +DOCUMENTATION_URL = "https://aedt.antenna.toolkit.docs.pyansys.com/" +ISSUE_TRACKER_URL = "https://github.com/ansys/pyaedt-toolkits-antenna/issues" ABOUT_TEXT = f"""

Antenna Toolkit {__version__}

-

Project using PySide6.

-

If you have any questions or issues, please open an issue in pyaedt-toolkits-antenna Issues page.

-

Alternatively, you can contact us at pyansys.core@ansys.com.

-

Your use of this software is governed by the MIT License. In addition, this package allows you to access a software that is licensed under separate terms ("Separately Licensed Software"). If you chose to install such Separately Licensed Software, you acknowledge that you are responsible for complying with any associated terms and conditions.

+

Project using PySide6, Copyright 2024 The Qt Company Ltd.

+

The graphical user interface (GUI) components are licensed under LGPL v3.0.

+

Except for the GUI components, your use of this software is governed by the MIT License. In addition, this package allows you to access a software that is licensed under separate terms ("Separately Licensed Software"). If you choose to install such Separately Licensed Software, you acknowledge that you are responsible for complying with any associated terms and conditions.

Copyright 2023 - 2024 ANSYS, Inc. All rights reserved.

+

If you have any questions or issues, please open an issue in pyaedt-toolkits-antenna Issues page.

+

Alternatively, you can contact us at pyansys.core@ansys.com.

""" -DOCUMENTATION_URL = "https://aedt.antenna.toolkit.docs.pyansys.com/" -ISSUE_TRACKER_URL = "https://github.com/ansys/pyaedt-toolkits-antenna/issues" class HelpMenu(object):