Skip to content
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

adding links across docs gui and repository #51

Merged
merged 3 commits into from
Nov 19, 2021
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
20 changes: 16 additions & 4 deletions aydin/gui/tabs/qt/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,28 @@ def __init__(self, parent):
# Horizontal Line Break
self.tab_layout.addWidget(QHorizontalLineBreakWidget(self))

cite_layout = QHBoxLayout()
cite_layout.setAlignment(Qt.AlignCenter)
cite_and_support_layout = QVBoxLayout()
cite_and_support_layout.setAlignment(Qt.AlignCenter)

cite_label = QLabel(
"If you find Aydin useful in your work, please kindly cite Aydin by using our DOI: "
"<a href='https://doi.org/10.5281/zenodo.5654826'> 10.5281/zenodo.5654826 </a>"
)
cite_label.setTextFormat(Qt.RichText)
cite_label.setOpenExternalLinks(True)
cite_layout.addWidget(cite_label)
self.tab_layout.addLayout(cite_layout)
cite_and_support_layout.addWidget(cite_label)

support_label = QLabel(
"If you have any bug reports or feature requests, please reach us at "
"<a href='https://github.com/royerlab/aydin'>our GitHub repository</a>. "
"If you have any general question, please reach us at "
"<a href='https://forum.image.sc/tag/aydin'>image.sc</a>."
)
support_label.setTextFormat(Qt.RichText)
support_label.setOpenExternalLinks(True)
cite_and_support_layout.addWidget(support_label)

self.tab_layout.addLayout(cite_and_support_layout)

self.tab_layout.setAlignment(Qt.AlignTop)
self.setLayout(self.tab_layout)
5 changes: 5 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ to run large jobs offline, and an
`API <https://royerlab.github.io/aydin/api/introduction.html>`_ for
custom coding and integration into other packages.

Our GitHub repository can be found `here <https://github.com/royerlab/aydin>`_. You can
`open issues <https://github.com/royerlab/aydin/issues>`_ to communicate bug reports and
feature requests and find `our releases <https://github.com/royerlab/aydin/releases>`_.


Getting started, with bundles:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To get started with Aydin, please download and install Aydin on your machine.
Expand Down