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 SciLifeLab logo to About box #3124

Merged
merged 1 commit into from
Oct 16, 2024
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
5 changes: 3 additions & 2 deletions src/sas/qtgui/Utilities/About/About.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class About(QDialog):
("Australian Nuclear Science and Technology Organisation", "ansto.svg", web.ansto_url),
("Bundesanstalt für Materialforschung", "bam.png", web.bam_url),
("Technische Universiteit Delft", "delft.png", web.delft_url),
("Diamond Light Source", "diamond.png", web.diamond_url)
("Diamond Light Source", "diamond.png", web.diamond_url),
("SciLifeLab", "scilifelab.png", web.scilifelab_url)
]

def __init__(self, parent=None):
Expand Down Expand Up @@ -164,7 +165,7 @@ def setText(self):
<p>
This work originally developed as part of the DANSE project funded by the NSF under
grant DMR-0520547, and currently maintained by UTK, NIST, UMD, ORNL, ISIS, ESS, ILL,
ANSTO, TU Delft, DLS, and the scattering community.
ANSTO, TU Delft, DLS, SciLifeLab, and the scattering community.
</p>
<p>
SasView also contains code developed with funding from the EU Horizon 2020 programme under
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/sas/system/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ def __init__(self):
"https://www.tudelft.nl/en/faculty-of-applied-sciences/business/facilities/reactor-institute-delft"
self.inst_url = "https://www.utk.edu"
self.diamond_url = "http://www.diamond.ac.uk"
self.scilifelab_url = "https://www.scilifelab.se"

self.homepage_url = "https://www.sasview.org"
self.download_url = 'https://github.com/SasView/sasview/releases/latest'
Expand Down
Loading