From 03292ef0b4267e837235b9aed318bde24305b22e Mon Sep 17 00:00:00 2001 From: Stephane Dallongeville <stephane.dallongeville@pasteur.fr> Date: Tue, 16 Mar 2021 16:08:54 +0100 Subject: [PATCH] Updated "About" dialog for MM citation references --- pom.xml | 2 +- .../MicroManager/gui/AboutPanel.java | 22 ++++++++++++------- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index 85f9857..e80d05d 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ </parent> <artifactId>micromanager</artifactId> - <version>1.9.0</version> + <version>1.9.1</version> <packaging>jar</packaging> diff --git a/src/main/java/plugins/tprovoost/Microscopy/MicroManager/gui/AboutPanel.java b/src/main/java/plugins/tprovoost/Microscopy/MicroManager/gui/AboutPanel.java index 1fcdb07..f7295a5 100644 --- a/src/main/java/plugins/tprovoost/Microscopy/MicroManager/gui/AboutPanel.java +++ b/src/main/java/plugins/tprovoost/Microscopy/MicroManager/gui/AboutPanel.java @@ -49,15 +49,21 @@ public class AboutPanel extends JPanel setBorder(new EmptyBorder(10, 10, 10, 10)); JPanel center = new JPanel(new BorderLayout()); final JLabel value = new JLabel("<html><body>" - + "<h2>About</h2><p>Micro-Manager for Icy is being developed by Stephane Dallongeville, Irsath Nguyen and Thomas Provoost." - + "<br/>Copyright 2016, Institut Pasteur</p><br/>" + "<p>This plugin is based on Micro-Manager? " + + "<h2>About</h2><h4>Micro-Manager for Icy is being developed by Stephane Dallongeville, Irsath Nguyen and Thomas Provoost." + + "<br/>Copyright 2021, Institut Pasteur.</h4>" + "<p>This plugin is based on Micro-Manager " + MMVersion.VERSION_STRING + " which is developed under the following license:<br/>" - + "<i>This software is distributed free of charge in the hope that it will be<br/>" - + "useful, but WITHOUT ANY WARRANTY; without even the implied<br/>" - + "warranty of merchantability or fitness for a particular purpose. In no<br/>" - + "event shall the copyright owner or contributors be liable for any direct,<br/>" - + "indirect, incidental spacial, examplary, or consequential damages.<br/>" - + "Copyright University of California San Francisco, 2010. All rights reserved.</i>" + "</p>" + + "<i>This software is distributed free of charge in the hope that it will be useful, but WITHOUT ANY WARRANTY;<br/>" + + "without even the implied warranty of merchantability or fitness for a particular purpose.<br/>" + + "In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental spacial, examplary,<br/>" + + "or consequential damages.<br/>" + + "<b>Copyright University of California San Francisco, 2010. All rights reserved.</b></i><br/></p>" + + "<br/>" + + "When you publish results using Micro-Manager, please cite one of the following papers:<br/>" + + "<i><a href=\"https://www.jbmethods.org/jbm/article/view/36/28\">(PDF)</a> Arthur D Edelstein, Mark A Tsuchida, Nenad Amodaj, Henry Pinkard, Ronald D Vale, and Nico Stuurman (2014),<br/>" + + "Advanced methods of microscope control using μManager software. Journal of Biological Methods 2014 1(2):e11 <a href=\"http://dx.doi.org/10.14440/jbm.2014.36\">doi:10.14440/jbm.2014.36</a><br/>" + + "<a href=\"http://valelab.ucsf.edu/publications/2010EdelsteinCurrProt.pdf\">(PDF)</a> Arthur Edelstein, Nenad Amodaj, Karl Hoover, Ron Vale, and Nico Stuurman (2010),<br/>" + + "Computer Control of Microscopes Using μManager. Current Protocols in Molecular Biology 14.20.1-14.20.17 <a href=\"http://dx.doi.org/10.1002/0471142727.mb1420s92\">doi:10.1002/0471142727.mb1420s92</a><br/></i>" + + "</body></html>"); JLabel link = new JLabel("<html><a href=\"\">For more information, please follow this link.</a></html>"); link.addMouseListener(new MouseAdapter() -- GitLab