web updates
authorplaa <plaa@180e2498-e6e9-4542-8430-84ac67f01cd8>
Mon, 15 Aug 2011 17:11:14 +0000 (17:11 +0000)
committerplaa <plaa@180e2498-e6e9-4542-8430-84ac67f01cd8>
Mon, 15 Aug 2011 17:11:14 +0000 (17:11 +0000)
git-svn-id: https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk@156 180e2498-e6e9-4542-8430-84ac67f01cd8

20 files changed:
ChangeLog
pix-src/icon/flag-icon.png [new file with mode: 0644]
pix-src/icon/flag-icon.xcf.gz [new file with mode: 0644]
src/net/sf/openrocket/util/GUIUtil.java
web/html/contact.html
web/html/documentation.html
web/html/download.html
web/html/features.html
web/html/getinvolved.html
web/html/greenbox.png [deleted file]
web/html/index.html
web/html/layout.css
web/html/license.html
web/html/report.html
web/htp/body.htt
web/htp/contact.htp
web/htp/getinvolved.htp
web/htp/htp.def
web/htp/index.htp
web/htp/license.htp

index b1435b8bbbf2233a2e5c77a08089b1263a5e3637..3c2287c90591130a18dbe1ae171880b36b9e981c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-13  Sampo Niskanen
+
+       * [BUG] JDK7 returns null font for TitledBorder
+
 2011-08-12  Sampo Niskanen
 
        * Released version 1.1.7
diff --git a/pix-src/icon/flag-icon.png b/pix-src/icon/flag-icon.png
new file mode 100644 (file)
index 0000000..cd34128
Binary files /dev/null and b/pix-src/icon/flag-icon.png differ
diff --git a/pix-src/icon/flag-icon.xcf.gz b/pix-src/icon/flag-icon.xcf.gz
new file mode 100644 (file)
index 0000000..7a92c1d
Binary files /dev/null and b/pix-src/icon/flag-icon.xcf.gz differ
index 831f2381afc44b53f13d84fb536cfc38d87572dd..d8aec3b0ad9d591a7084da38cf3d092bfcc1cc06 100644 (file)
@@ -39,6 +39,7 @@ import javax.swing.JButton;
 import javax.swing.JComboBox;
 import javax.swing.JComponent;
 import javax.swing.JDialog;
+import javax.swing.JLabel;
 import javax.swing.JRootPane;
 import javax.swing.JSlider;
 import javax.swing.JSpinner;
@@ -274,14 +275,18 @@ public class GUIUtil {
         */
        public static void changeFontStyle(TitledBorder border, int style) {
                /*
-                * There's been an NPE caused by the font changing, this is debug for it.
+                * The fix of JRE bug #4129681 causes a TitledBorder occasionally to
+                * return a null font.  We try to work around the issue by detecting it
+                * and reverting to the font of a JLabel instead.
                 */
-               if (border == null) {
-                       throw new BugException("border is null");
-               }
                Font font = border.getTitleFont();
                if (font == null) {
-                       throw new BugException("Border font is null");
+                       log.error("Border font is null, reverting to JLabel font");
+                       font = new JLabel().getFont();
+                       if (font == null) {
+                               log.error("JLabel font is null, not modifying font");
+                               return;
+                       }
                }
                font = font.deriveFont(style);
                if (font == null) {
index d8569532b77f0ae49868fd485f1ef7e94262ce60..bd981e3055ac9278bc07780f95a7d9c9cdd2e78f 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
     <p><strong><em>Support requests</em></strong> should be sent to
     the <a href="http://apps.sourceforge.net/phpbb/openrocket/">support
     forums</a>.<br/>
-    <strong><em>Bug reports and feature requests</em></strong> should
-    be <a href="report.html">reported separately</a>.</p>
+<!--    <strong><em>Bug reports and feature requests</em></strong> should
+    be <a href="report.html">reported separately</a>.</p> -->
     <p><strong>Email:</strong>  &nbsp;&nbsp;
     <em>sam<span>po</span>.<span>niskanen</span><span>@i</span>ki.fi</em></p>
     <p><strong>WWW:</strong>  &nbsp;&nbsp;
     <a href="http://www.iki.fi/sampo.niskanen/"
     title="Home page of Sampo Niskanen"><em>http://www.iki.fi/sampo.niskanen/</em></a></p>
-      <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
   </div>
   <div class="valid">
     <p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
index 2ddaba5239c8b2c2a35b09cb26af0e19be3d03d4..ba061b5dcab364ba7b838cc97b32c72408af25bc 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
       wiki page</a>, including links to Barrowman's original report and
       thesis, extensions for the Barrowman method, experimental rocket
       data etc.</p>
-      <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
   </div>
   <div class="valid">
     <p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
index 1a4d8e14935ae6bddc04a2013ac163222fd409a9..5b7061504db06deb00369ee4598d421317dd0262 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
     <pre class="quote">$ svn co https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk OpenRocket</pre>
     <p>The above URL may be used to connect to the repository with
       other Subversion clients as well.</p>
-      <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
   </div>
   <div class="valid">
     <p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
index f8d4227f5a50015ea1b50801114109835002636f..f774c0635bb83089941eb554e210ddf553f71183 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
     <p>If you want to help make OpenRocket the best rocket simulator,
       don't hesitate to <a href="getinvolved.html">Get involved!</a></p>
     <div class="clear"></div>
-      <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
   </div>
   <div class="valid">
     <p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
index 5cd8658ceee171934065f9b0ca8228003ea3e5cd..91023aed867758889b6ef1594a2f792c07789238 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
     </ul>
     <h3 id="other">Other</h3>
     <ul>
+      <li><a href="http://openrocket.trans.free.fr/">Translating OpenRocket</a> to your language</li>
       <li>Creating good and interesting example designs that
        demonstrate some OpenRocket features.</li>
       <li>Hosting a place to share rocket designs with other
       <li>Giving input and suggestions on how to make OpenRocket
        better.</li>
     </ul>
-      <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
   </div>
   <div class="valid">
     <p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
diff --git a/web/html/greenbox.png b/web/html/greenbox.png
deleted file mode 100644 (file)
index d6c7d77..0000000
Binary files a/web/html/greenbox.png and /dev/null differ
index 3aae0c83e973706fa8668bfa47232e35bfe59ae7..1d55d6509455d563ee878e38acb964793b9f6793 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
     <p><strong>OpenRocket</strong> is an free, fully featured model
       rocket simulator that allows you to design and simulate your
       rockets before actually building and flying them.</p>
-    <p>OpenRocket features a full six-degree-of-freedom simulation,
-      realistic wind modeling, a multitude of different components
-      including free-form fins and canted fins, automatic design
-      optimization, clustering and staging.  Read more about its <a
+    <p>The main features include:</p>
+    <ul>
+      <li>Six-degree-of-freedom flight simulation</li>
+      <li>Automatic design optimization</li>
+      <li>Realtime simulated altitude, velocity and acceleration display</li>
+      <li>Staging and clustering support</li>
+      <li>Cross-platform (Java-based)</li>
+    </ul>
+    <p>Read more about its <a
       href="features.html">features and see screenshots</a>.
     </p>
     <p>OpenRocket is an Open Source project licensed under the
   <p><span class="date">24.5.2009:</span> First version 0.9.0
     <a href="download.html">released</a>!</p>
 </div>
-      <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
   </div>
   <div class="valid">
     <p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
index 9cf1d379607bf2f6e2712690d1b231437899280e..356bdecc835d1213061ce1564d2ce6c58df15bdd 100644 (file)
@@ -84,13 +84,18 @@ div.menu {
   width: 170px;
   margin: 0;
   padding: 0 0;
-  background: #c1d0db url(menubg.png) repeat-x;
+
+  background: url("menubg.png") repeat-x scroll 0 -35px #C1D0DB;
+
   z-index: 200;
   border: solid 1px black;
   -moz-border-radius: 12px;
   -webkit-border-radius: 12px;
   -khtml-border-radius: 12px;
   border-radius: 12px;
+  -moz-box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.5);
+  -webkit-box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.5);
+  box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.5);
 }
 div.menu ul {
   position: relative;
@@ -194,70 +199,54 @@ div.menu div.logo img {
 
 .content {
     margin: 0em 2em 1em 130px;
-    padding: 2em 2em 2em 80px;
+    padding: 2em 2em 2em 95px;
     min-height: 27em;
     background-color: white;
     position: relative;
-    border: 2px solid #666;
+    *border: 2px solid #666;
     min-height: 530px;
-}
-
-
-.content div.tl, .content div.tr, .content div.bl, .content div.br {
-  position: absolute;
-  width: 10px;
-  height: 10px;
-  background: url('whitebox.png') no-repeat;
-}
-.content div.tl {
-  top: -10px;
-  left: -10px;
-  background-position: 0px 0px;
-}
-.content div.tr {
-  top: -10px;
-  right: -10px;
-  background-position: -50px 0px;
-}
-.content div.bl {
-  bottom: -10px;
-  left: -10px;
-  background-position: 0px -50px;
-}
-.content div.br {
-  bottom: -10px;
-  right: -10px;
-  background-position: -50px -50px;
-}
-
-.content div.t, .content div.b {
-  position: absolute;
-  height: 10px;
-  left: 0px;
-  right: 0px;
-  background: url('whitebox-vertical.png') repeat-x;
-}
-.content div.t {
-  top: -10px;
-}
-.content div.b {
-  bottom: -10px;
-  background-position: 0px -50px;
-}
-
-.content div.l, .content div.r {
-  position: absolute;
-  width: 10px;
-  top: 0px;
-  bottom: 0px;
-  background: url('whitebox-horizontal.png') repeat-y;
-}
-.content div.l {
-  left: -10px;
-}
-.content div.r {
-  right: -10px;
-  background-position: -50px 0px;
+    
+    -moz-border-radius: 7px;
+    -webkit-border-radius: 7px;
+    border-radius: 7px;
+
+    -moz-box-shadow: 0px 0px 8px 5px white;
+    -webkit-box-shadow: 0px 0px 8px 5px white;
+    box-shadow: 0px 0px 8px 5px white;
+}
+
+
+.gradientbutton {
+    display: inline-block;
+    width: 200px;
+    height: 100px;
+
+    border-top:    2px solid #6f2;
+    border-left:   1px solid #4c1;
+    border-right:  1px solid #380;
+    border-bottom: 2px solid #360;
+
+    background-color: #5c2;
+
+    -moz-border-radius: 10px;
+    -webkit-border-radius: 10px;
+    border-radius: 10px;
+
+    background-image: -webkit-gradient(
+       linear,
+       left bottom,
+       left top,
+       color-stop(0.08, rgb(55,146,14)),
+       color-stop(0.9, rgb(102,221,17))
+    );
+    background-image: -moz-linear-gradient(
+       center bottom,
+       rgb(55,146,14) 8%,
+       rgb(102,221,17) 90%
+    );
+/*
+    background: -moz-linear-gradient(center bottom , #0B5CE2 30%, #2678FF 65%) repeat scroll 0 0;
+/** */
 }
 
 
@@ -363,10 +352,38 @@ dd {
 
 div.downloadbox {
     position: relative;
-    width: 175px;
+    width: 180px;
     height: 80px;
-    background: transparent url('greenbox.png') no-repeat;
     text-align: left;
+
+    border-top:    2px solid #6e2;
+    border-left:   1px solid #4c1;
+    border-right:  1px solid #380;
+    border-bottom: 2px solid #360;
+
+    -moz-box-shadow: 1px 1px 4px 0px #333;
+    -webkit-box-shadow: 1px 1px 4px 0px #333;
+    box-shadow: 1px 1px 4px 0px #333;
+
+
+    background-color: #5c2;
+
+    -moz-border-radius: 10px;
+    -webkit-border-radius: 10px;
+    border-radius: 10px;
+
+    background-image: -webkit-gradient(
+       linear,
+       left bottom,
+       left top,
+       color-stop(0.08, rgb(55,156,14)),
+       color-stop(0.9, rgb(102,221,17))
+    );
+    background-image: -moz-linear-gradient(
+       center bottom,
+       rgb(55,156,14) 8%,
+       rgb(102,221,17) 90%
+    );
 }
 
 div.downloadbox a.main {
@@ -379,7 +396,7 @@ div.downloadbox a.main {
     color: #a0ff4b;
     font-family: Arial, sans-serif;
 
-    padding: 10px 12px;
+    padding: 8px 12px;
     text-shadow: #666 1px 1px 1px;
 }
 div.downloadbox a.main span {
index 73d9313aff36c4f0f62debafa28e53c143c7161e..daefe3da63833422795f2b8fc7488878105401f0 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
@@ -50,7 +53,7 @@
     <pre class="license">
 OpenRocket - A model rocket simulator
 
-Copyright (C) 2007-2009 Sampo Niskanen
+Copyright (C) 2007-2011 Sampo Niskanen
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -749,14 +752,6 @@ Public License instead of this License.  But first, please read
 &lt;http://www.gnu.org/philosophy/why-not-lgpl.html&gt;.
     </pre>
     <hr/>
-      <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
   </div>
   <div class="valid">
     <p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
index c589ac06b6c6876921e2228cd814529769f916ef..c9a12703b7ba5f8957d7001850a314d11d92908d 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
       enhancement request.  Please send multiple enhancements as
       individual items.</li>
     </ul>
-      <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
   </div>
   <div class="valid">
     <p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
index a5e1862086abb71ca6f3f9e237cb8861f13ab348..00649d57595086cb13f716e0bc69e1aacb9b6594 100644 (file)
         <li><a href="download.html">Download</a></li>
         <li><a href="documentation.html">Documentation</a></li>
         <li><a href="http://sourceforge.net/apps/mediawiki/openrocket/">Wiki pages</a></li>
+        <li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
         <li><a href="getinvolved.html">Get involved!</a></li>
         <li><a href="contact.html">
           Mailing lists<br/>
           Support forums<br/>
          Contact info</a></li>
+<!--
         <li><a href="report.html">
           Report a bug<br/>
          Request a feature</a></li>
+-->
         <li><a href="license.html">License</a></li>
       </ul>
       <div class="logo">
index cd05bf285f16c348bfcd7300b653e09f1aba77b9..b7367991859b23bff7cb607963a152d8f1fec9bb 100644 (file)
@@ -63,8 +63,8 @@
     <p><strong><em>Support requests</em></strong> should be sent to
     the <a href="http://apps.sourceforge.net/phpbb/openrocket/">support 
     forums</a>.<br/>
-    <strong><em>Bug reports and feature requests</em></strong> should
-    be <a href="report.html">reported separately</a>.</p>
+<!--    <strong><em>Bug reports and feature requests</em></strong> should
+    be <a href="report.html">reported separately</a>.</p> -->
 
     <p><strong>Email:</strong>  &nbsp;&nbsp;
     <em>sam<span>po</span>.<span>niskanen</span><span>@i</span>ki.fi</em></p>
index 2958618f2649d27872e299032fb036d6e4ef48ba..8654be888ac4b7c1a9a02ed0f33e7604c0370ad7 100644 (file)
@@ -88,6 +88,7 @@
     <h3 id="other">Other</h3>
 
     <ul>
+      <li><a href="http://openrocket.trans.free.fr/">Translating OpenRocket</a> to your language</li>
       <li>Creating good and interesting example designs that
        demonstrate some OpenRocket features.</li>
       <li>Hosting a place to share rocket designs with other
index 9887c4d809e1f355bf251e24127f083e17467779..ce36b378dca0b733fdb92a7c2e005ebe4cb69e87 100644 (file)
 </def>
 
 <def name="contentbox">
-  <div class="t"></div>
-  <div class="r"></div>
-  <div class="b"></div>
-  <div class="l"></div>
-  <div class="tr"></div>
-  <div class="tl"></div>
-  <div class="br"></div>
-  <div class="bl"></div>
 </def>
 
 
index 76f4a3e8207385316a501f1c6adea26ea3c95e37..5b840955115d57819291e8576647dd8e7d0cdc39 100644 (file)
 
    </div>
 
-
     <p><strong>OpenRocket</strong> is an free, fully featured model
       rocket simulator that allows you to design and simulate your
       rockets before actually building and flying them.</p>
 
-    <p>OpenRocket features a full six-degree-of-freedom simulation,
-      realistic wind modeling, a multitude of different components
-      including free-form fins and canted fins, automatic design
-      optimization, clustering and staging.  Read more about its <a
+    <p>The main features include:</p>
+
+    <ul>
+      <li>Six-degree-of-freedom flight simulation</li>
+      <li>Automatic design optimization</li>
+      <li>Realtime simulated altitude, velocity and acceleration display</li>
+      <li>Staging and clustering support</li>
+      <li>Cross-platform (Java-based)</li>
+    </ul>
+    
+    <p>Read more about its <a
       href="features.html">features and see screenshots</a>.
     </p>
     <p>OpenRocket is an Open Source project licensed under the 
index b9dc9f1e83973b0c80b5ec545ce5cceca73d3dda..a2743f656d788cb8f83381e73a7985d09fa9f204 100644 (file)
@@ -16,7 +16,7 @@
     <pre class="license">
 OpenRocket - A model rocket simulator
 
-Copyright (C) 2007-2009 Sampo Niskanen
+Copyright (C) 2007-2011 Sampo Niskanen
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by