Skip to content

CHORE: Update help message with pyside6 info #280

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 12, 2024
Merged
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
13 changes: 7 additions & 6 deletions src/ansys/aedt/toolkits/antenna/ui/windows/help/help_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""<h2>Antenna Toolkit {__version__}</h2>
<p>Project using <a href='https://wiki.qt.io/Qt_for_Python'> PySide6</a>.</p>
<p>If you have any questions or issues, please open an issue in <a href='https://github.com/ansys/pyaedt-toolkits-antenna/issues'>pyaedt-toolkits-antenna Issues</a> page.</p>
<p>Alternatively, you can contact us at <a href='mailto:[email protected]'>[email protected]</a>.</p>
<p>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.</p>
<p>Project using <a href='https://wiki.qt.io/Qt_for_Python'> PySide6</a>, Copyright 2024 The Qt Company Ltd.</p>
<p>The graphical user interface (GUI) components are licensed under <a href='https://www.gnu.org/licenses/lgpl-3.0.en.html'>LGPL v3.0</a>.</p>
<p>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.</p>
<p>Copyright 2023 - 2024 ANSYS, Inc. All rights reserved.</p>
<p>If you have any questions or issues, please open an issue in <a href='{ISSUE_TRACKER_URL}'>pyaedt-toolkits-antenna Issues</a> page.</p>
<p>Alternatively, you can contact us at <a href='mailto:[email protected]'>[email protected]</a>.</p>
"""
DOCUMENTATION_URL = "https://aedt.antenna.toolkit.docs.pyansys.com/"
ISSUE_TRACKER_URL = "https://github.com/ansys/pyaedt-toolkits-antenna/issues"


class HelpMenu(object):
Expand Down
Loading