added d martin to authors and fixed faq/discuss message
authorjprocter <Jim Procter>
Thu, 28 Aug 2008 13:43:31 +0000 (13:43 +0000)
committerjprocter <Jim Procter>
Thu, 28 Aug 2008 13:43:31 +0000 (13:43 +0000)
src/jalview/appletgui/AlignFrame.java
src/jalview/gui/Desktop.java
src/jalview/gui/SplashScreen.java

index 0d1a3e1..749ae8b 100755 (executable)
@@ -2338,8 +2338,10 @@ public class AlignFrame
         g.setFont(new Font("Helvetica", Font.BOLD, 14));
         g.drawString("JalviewLite - Release " + version, x, y += fh);
         g.setFont(new Font("Helvetica", Font.PLAIN, 12));
-        g.drawString("Authors:  Andrew Waterhouse, Jim Procter, Michele Clamp, James Cuff, Steve Searle & Geoff Barton.",
+        g.drawString("Authors:  Andrew Waterhouse, Jim Procter, Michele Clamp, James Cuff, Steve Searle,",
                      x, y += fh * 1.5);
+        g.drawString("David Martin & Geoff Barton.",
+        x+50, y += fh);
         g.drawString("Development managed by The Barton Group, University of Dundee, Scotland, UK.",
                      x, y += fh);
         g.drawString(
@@ -2377,7 +2379,7 @@ public class AlignFrame
 
     Frame frame = new Frame();
     frame.add(new AboutPanel(version));
-    jalview.bin.JalviewLite.addFrame(frame, "Jalview", 580, 200);
+    jalview.bin.JalviewLite.addFrame(frame, "Jalview", 580, 220);
 
   }
 
index fe67c4f..6e58cd8 100755 (executable)
@@ -606,10 +606,10 @@ public class Desktop
 
     }
     // TODO: update this text for each release or centrally store it for lite and application
-    message.append("\nAuthors:  Andrew Waterhouse, Jim Procter, Michele Clamp, James Cuff, Steve Searle & Geoff Barton." +
+    message.append("\nAuthors:  Andrew Waterhouse, Jim Procter, Michele Clamp, James Cuff, Steve Searle,\n    David Martin & Geoff Barton." +
                    "\nDevelopment managed by The Barton Group, University of Dundee, Scotland, UK.\n"+
                    "\nFor help, see the FAQ at www.jalview.org and/or join the jalview-discuss@jalview.org mailing list\n"+
-                   "\n\nIf  you use Jalview, please cite:" +
+                   "\nIf  you use Jalview, please cite:" +
                    "\n\"Clamp, M., Cuff, J., Searle, S. M. and Barton, G. J. (2004), The Jalview Java Alignment Editor\"" +
                    "\nBioinformatics,  2004 20;426-7.");
 
index 4b64e9f..10a1627 100755 (executable)
@@ -94,7 +94,7 @@ public class SplashScreen
     iframe.setVisible(true);
     iframe.setBounds( (int) ( (Desktop.instance.getWidth() - 750) / 2),
                       (int) ( (Desktop.instance.getHeight() - 160) / 2),
-                      750, 160);
+                      750, 190);
   }
 
   /**
@@ -196,8 +196,10 @@ public class SplashScreen
     }
 
     g.setFont(new Font("Verdana", Font.BOLD, fontSize));
-    g.drawString("Authors: Andrew Waterhouse, Jim Procter,Michele Clamp, James Cuff, Steve Searle & Geoff Barton.",
+    g.drawString("Authors: Andrew Waterhouse, Jim Procter, Michele Clamp, James Cuff, Steve Searle,",
                  50, y += fontSize + 4);
+    g.drawString("David Martin & Geoff Barton.",
+    60, y += fontSize + 4);
     g.drawString("Development managed by The Barton Group, University of Dundee.",
                  50, y += fontSize + 4);
     g.drawString("If  you use Jalview, please cite: Clamp, M., Cuff, J., Searle, S. M. and Barton, G. J. (2004),",