release 1.1.6
This commit is contained in:
		
							parent
							
								
									244e792453
								
							
						
					
					
						commit
						269654f8c9
					
				@ -1,3 +1,7 @@
 | 
				
			|||||||
 | 
					2011-07-22  Sampo Niskanen
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						* Released version 1.1.6.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
2011-07-21  Sampo Niskanen
 | 
					2011-07-21  Sampo Niskanen
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	* [BUG] Converting triangular fin to freeform
 | 
						* [BUG] Converting triangular fin to freeform
 | 
				
			||||||
 | 
				
			|||||||
@ -1,3 +1,12 @@
 | 
				
			|||||||
 | 
					OpenRocket 1.1.6  (2011-07-22):
 | 
				
			||||||
 | 
					-------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Internationalization support thanks to work by Boris du Reau and
 | 
				
			||||||
 | 
					translations by Tripoli Spain, Tripoli France and Stefan Lobas
 | 
				
			||||||
 | 
					(ERIG e.V.).  The release also contains rocket design scaling support
 | 
				
			||||||
 | 
					and numerous bug fixes.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OpenRocket 1.1.5  (2011-06-10):
 | 
					OpenRocket 1.1.5  (2011-06-10):
 | 
				
			||||||
-------------------------------
 | 
					-------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# The OpenRocket build version
 | 
					# The OpenRocket build version
 | 
				
			||||||
 | 
					
 | 
				
			||||||
build.version=1.1.6pre
 | 
					build.version=1.1.6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# The source of the package.  When building a package for a specific
 | 
					# The source of the package.  When building a package for a specific
 | 
				
			||||||
 | 
				
			|||||||
@ -31,6 +31,10 @@ public class AboutDialog extends JDialog {
 | 
				
			|||||||
			"Sampo Niskanen (main developer)<br>" +
 | 
								"Sampo Niskanen (main developer)<br>" +
 | 
				
			||||||
			"Doug Pedrick (RockSim file format, printing)<br>" +
 | 
								"Doug Pedrick (RockSim file format, printing)<br>" +
 | 
				
			||||||
			"Boris du Reau (internationalization, translation lead)<br><br>" +
 | 
								"Boris du Reau (internationalization, translation lead)<br><br>" +
 | 
				
			||||||
 | 
								"<b>Translations by:</b><br><br>" +
 | 
				
			||||||
 | 
								"Tripoli France (French)<br>" +
 | 
				
			||||||
 | 
								"Stefan Lobas / ERIG e.V. (German)<br>" +
 | 
				
			||||||
 | 
								"Tripoli Spain (Spanish)<br><br>" +
 | 
				
			||||||
			"<b>OpenRocket utilizes the following libraries:</b><br><br>" +
 | 
								"<b>OpenRocket utilizes the following libraries:</b><br><br>" +
 | 
				
			||||||
			"MiG Layout (http://www.miglayout.com/)<br>" +
 | 
								"MiG Layout (http://www.miglayout.com/)<br>" +
 | 
				
			||||||
			"JFreeChart (http://www.jfree.org/jfreechart/)<br>" +
 | 
								"JFreeChart (http://www.jfree.org/jfreechart/)<br>" +
 | 
				
			||||||
 | 
				
			|||||||
@ -80,37 +80,56 @@ header("Content-type: text/plain");
 | 
				
			|||||||
$version = $_GET["version"];
 | 
					$version = $_GET["version"];
 | 
				
			||||||
$updates = "";
 | 
					$updates = "";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$unstable = "1.1.5";
 | 
					$unstable = "1.1.6";
 | 
				
			||||||
$stable = "1.0.0";
 | 
					$stable = "1.0.0";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if (preg_match("/^1\.1\.4/", $version)) {
 | 
					if (preg_match("/^1\.1\.5/", $version)) {
 | 
				
			||||||
  $updates = "Version: " . $unstable . "\n" .
 | 
					  $updates = "Version: " . $unstable . "\n" .
 | 
				
			||||||
    "5: Fixes to printing system";
 | 
					    "6: Initial localization support\n" .
 | 
				
			||||||
 | 
					    "5: Scaling support\n" .
 | 
				
			||||||
 | 
					    "4: Bug fixes\n" .
 | 
				
			||||||
 | 
					    "";
 | 
				
			||||||
 | 
					} else if (preg_match("/^1\.1\.4/", $version)) {
 | 
				
			||||||
 | 
					  $updates = "Version: " . $unstable . "\n" .
 | 
				
			||||||
 | 
					    "6: Initial localization support\n" .
 | 
				
			||||||
 | 
					    "5: Fixes to printing system\n" .
 | 
				
			||||||
 | 
					    "5: Scaling support\n" .
 | 
				
			||||||
 | 
					    "";
 | 
				
			||||||
} else if (preg_match("/^1\.1\.3/", $version)) {
 | 
					} else if (preg_match("/^1\.1\.3/", $version)) {
 | 
				
			||||||
  $updates = "Version: " . $unstable . "\n" .
 | 
					  $updates = "Version: " . $unstable . "\n" .
 | 
				
			||||||
    "5: Initial printing support\n" .
 | 
					    "7: Initial printing support\n" .
 | 
				
			||||||
    "4: Bug fixes\n";
 | 
					    "6: Initial localization support\n" .
 | 
				
			||||||
 | 
					    "5: Scaling support\n" .
 | 
				
			||||||
 | 
					    "4: Bug fixes\n" .
 | 
				
			||||||
 | 
					    "";
 | 
				
			||||||
} else if (preg_match("/^1\.1\.[12]/", $version)) {
 | 
					} else if (preg_match("/^1\.1\.[12]/", $version)) {
 | 
				
			||||||
  $updates = "Version: " . $unstable . "\n" .
 | 
					  $updates = "Version: " . $unstable . "\n" .
 | 
				
			||||||
    "6: Initial printing support\n" .
 | 
					    "6: Initial printing support\n" .
 | 
				
			||||||
    "5: Initial drag-and-drop support\n" .
 | 
					    "5: Initial drag-and-drop support\n" .
 | 
				
			||||||
    "4: Bug fixes\n";
 | 
					    "5: Initial localization support\n" .
 | 
				
			||||||
 | 
					    "5: Scaling support\n" .
 | 
				
			||||||
 | 
					    "4: Bug fixes\n" .
 | 
				
			||||||
 | 
					    "";
 | 
				
			||||||
} else if (preg_match("/^1\.1\.0/", $version)) {
 | 
					} else if (preg_match("/^1\.1\.0/", $version)) {
 | 
				
			||||||
  $updates = "Version: " . $unstable . "\n" .
 | 
					  $updates = "Version: " . $unstable . "\n" .
 | 
				
			||||||
    "6: Initial printing support\n" .
 | 
					    "6: Initial printing support\n" .
 | 
				
			||||||
 | 
					    "6: Initial localization support\n" .
 | 
				
			||||||
    "6: Enhanced motor selection\n" .
 | 
					    "6: Enhanced motor selection\n" .
 | 
				
			||||||
    "5: Rewritten simulation code\n" .
 | 
					    "5: Rewritten simulation code\n" .
 | 
				
			||||||
    "5: Drag-and-drop support\n" .
 | 
					    "5: Drag-and-drop support\n" .
 | 
				
			||||||
    "4: Bug fixes";
 | 
					    "4: Bug fixes\n" .
 | 
				
			||||||
 | 
					    "";
 | 
				
			||||||
} else if (preg_match("/^0\.9\.6/", $version)) {
 | 
					} else if (preg_match("/^0\.9\.6/", $version)) {
 | 
				
			||||||
  $updates = "Version: " . $stable . "\n" .
 | 
					  $updates = "Version: " . $stable . "\n" .
 | 
				
			||||||
    "6: Hundreds of new thrustcurves\n" .
 | 
					    "6: Hundreds of new thrustcurves\n" .
 | 
				
			||||||
    "5: Bug fixes";
 | 
					    "5: Bug fixes\n" .
 | 
				
			||||||
 | 
					    "";
 | 
				
			||||||
} else if (preg_match("/^0\.9\.[45]/", $version)) {
 | 
					} else if (preg_match("/^0\.9\.[45]/", $version)) {
 | 
				
			||||||
  $updates = "Version: " . $stable . "\n" .
 | 
					  $updates = "Version: " . $stable . "\n" .
 | 
				
			||||||
    "7: Hundreds of new thrustcurves\n" .
 | 
					    "7: Hundreds of new thrustcurves\n" .
 | 
				
			||||||
    "6: Aerodynamic computation updates\n" .
 | 
					    "6: Aerodynamic computation updates\n" .
 | 
				
			||||||
    "5: Numerous bug fixes";
 | 
					    "5: Numerous bug fixes" .
 | 
				
			||||||
 | 
					    "";
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -45,6 +45,16 @@
 | 
				
			|||||||
  <div class="content">
 | 
					  <div class="content">
 | 
				
			||||||
<div class="news">
 | 
					<div class="news">
 | 
				
			||||||
      <h2>Recent news:</h2>
 | 
					      <h2>Recent news:</h2>
 | 
				
			||||||
 | 
					  <p><span class="date">22.7.2011:</span> Version 1.1.6 is
 | 
				
			||||||
 | 
					    <a href="download.html">released</a>!</p>
 | 
				
			||||||
 | 
					  <p>This release includes initial localization support and
 | 
				
			||||||
 | 
					    translations to French, German and Spanish.  This is thanks to the
 | 
				
			||||||
 | 
					    great work of Boris du Reau, and the teams from Tripoli France,
 | 
				
			||||||
 | 
					    Tripoli Spain and ERIG e.V.  If you prefer to use some other
 | 
				
			||||||
 | 
					    language than the system default, you can select the language on
 | 
				
			||||||
 | 
					    the "Options" tab of the preferences dialog.</p>
 | 
				
			||||||
 | 
					  <p>The release also includes design scaling support and numerous bug
 | 
				
			||||||
 | 
					    fixes.</p>
 | 
				
			||||||
  <p><span class="date">10.6.2011:</span> Version 1.1.5 is
 | 
					  <p><span class="date">10.6.2011:</span> Version 1.1.5 is
 | 
				
			||||||
    <a href="download.html">released</a>!</p>
 | 
					    <a href="download.html">released</a>!</p>
 | 
				
			||||||
  <p>This release includes updates to the printing system which fixes
 | 
					  <p>This release includes updates to the printing system which fixes
 | 
				
			||||||
@ -54,25 +64,6 @@
 | 
				
			|||||||
  <p>This release includes initial printing support, thanks to Doug
 | 
					  <p>This release includes initial printing support, thanks to Doug
 | 
				
			||||||
    Pedrick.  Printing still has a few issues on some platforms.
 | 
					    Pedrick.  Printing still has a few issues on some platforms.
 | 
				
			||||||
    Various bugs have also been fixed.</p>
 | 
					    Various bugs have also been fixed.</p>
 | 
				
			||||||
  <p><span class="date">6.10.2010:</span> Version 1.1.3 is
 | 
					 | 
				
			||||||
    <a href="download.html">released</a>!</p>
 | 
					 | 
				
			||||||
  <p>This release includes support for moving and copying components
 | 
					 | 
				
			||||||
    in the component tree using drag-and-drop.  Use normal DnD for
 | 
					 | 
				
			||||||
    moving, and control-drag for copy.  This release also fixes a
 | 
					 | 
				
			||||||
    severe bug in the undo system.</p>
 | 
					 | 
				
			||||||
  <p><span class="date">7.9.2010:</span> A bug-fix version 1.1.2 is
 | 
					 | 
				
			||||||
    <a href="download.html">released</a>!</p>
 | 
					 | 
				
			||||||
  <p>This release fixes a severe bug in 1.1.1 that prevented adding stages
 | 
					 | 
				
			||||||
    to rocket designs.  Users are recommended to upgrade.</p>
 | 
					 | 
				
			||||||
  <p><span class="date">3.9.2010:</span> Version 1.1.1 is
 | 
					 | 
				
			||||||
    <a href="download.html">released</a>!</p>
 | 
					 | 
				
			||||||
  <p>For this release a major part of the simulator code has been
 | 
					 | 
				
			||||||
    rewritten for better flexibility in future development.  It also
 | 
					 | 
				
			||||||
    includes a vastly improved thrust curve selection dialog, the
 | 
					 | 
				
			||||||
    possibility to loading user-defined thrust curves and better
 | 
					 | 
				
			||||||
    startup times than previous releases.</p>
 | 
					 | 
				
			||||||
  <p>Simulation listeners written for older versions of OpenRocket
 | 
					 | 
				
			||||||
    are not compatible with this release.</p>
 | 
					 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
    <div class="contentholder">
 | 
					    <div class="contentholder">
 | 
				
			||||||
      <h2>Ready packages</h2>
 | 
					      <h2>Ready packages</h2>
 | 
				
			||||||
@ -91,13 +82,13 @@
 | 
				
			|||||||
        <a href="http://sourceforge.net/donate/index.php?group_id=260357"><img src="project-support.jpg" width="88" height="32" alt="Support This Project" /></a>
 | 
					        <a href="http://sourceforge.net/donate/index.php?group_id=260357"><img src="project-support.jpg" width="88" height="32" alt="Support This Project" /></a>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
        <div class="downloadbox">
 | 
					        <div class="downloadbox">
 | 
				
			||||||
    <a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.5/OpenRocket-1.1.5.jar/download">
 | 
					    <a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.6/OpenRocket-1.1.6.jar/download">
 | 
				
			||||||
      <strong>Download now!</strong>
 | 
					      <strong>Download now!</strong>
 | 
				
			||||||
      <span>OpenRocket-1.1.5.jar</span>
 | 
					      <span>OpenRocket-1.1.6.jar</span>
 | 
				
			||||||
    </a>
 | 
					    </a>
 | 
				
			||||||
    <span class="alternative">
 | 
					    <span class="alternative">
 | 
				
			||||||
      <a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.5/ReleaseNotes/view">Release notes</a> |
 | 
					      <a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.6/ReleaseNotes/view">Release notes</a> |
 | 
				
			||||||
            <a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.5/OpenRocket-1.1.5-src.zip/download">Source code</a>
 | 
					            <a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.6/OpenRocket-1.1.6-src.zip/download">Source code</a>
 | 
				
			||||||
    </span>
 | 
					    </span>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
      <h3>Stable release</h3>
 | 
					      <h3>Stable release</h3>
 | 
				
			||||||
@ -114,7 +105,7 @@
 | 
				
			|||||||
	Windows) by double-clicking the package icon.  No installation is
 | 
						Windows) by double-clicking the package icon.  No installation is
 | 
				
			||||||
	required.</p>
 | 
						required.</p>
 | 
				
			||||||
      <p>From the command line OpenRocket can be started by
 | 
					      <p>From the command line OpenRocket can be started by
 | 
				
			||||||
      <span class="command">java -jar OpenRocket-1.1.5.jar</span></p>
 | 
					      <span class="command">java -jar OpenRocket-1.1.6.jar</span></p>
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <div class="clear"></div>
 | 
					    <div class="clear"></div>
 | 
				
			||||||
 | 
				
			|||||||
@ -46,12 +46,12 @@
 | 
				
			|||||||
    <h2>Introduction</h2>
 | 
					    <h2>Introduction</h2>
 | 
				
			||||||
    <div class="rightpane">
 | 
					    <div class="rightpane">
 | 
				
			||||||
        <div class="downloadbox">
 | 
					        <div class="downloadbox">
 | 
				
			||||||
    <a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.5/OpenRocket-1.1.5.jar/download">
 | 
					    <a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.6/OpenRocket-1.1.6.jar/download">
 | 
				
			||||||
      <strong>Download now!</strong>
 | 
					      <strong>Download now!</strong>
 | 
				
			||||||
      <span>OpenRocket-1.1.5.jar</span>
 | 
					      <span>OpenRocket-1.1.6.jar</span>
 | 
				
			||||||
    </a>
 | 
					    </a>
 | 
				
			||||||
    <span class="alternative">
 | 
					    <span class="alternative">
 | 
				
			||||||
      <a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.5/ReleaseNotes/view">Release notes</a> |
 | 
					      <a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.6/ReleaseNotes/view">Release notes</a> |
 | 
				
			||||||
            <a href="download.html">Other versions</a>
 | 
					            <a href="download.html">Other versions</a>
 | 
				
			||||||
    </span>
 | 
					    </span>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
@ -88,6 +88,16 @@
 | 
				
			|||||||
    <div class="clear"></div>
 | 
					    <div class="clear"></div>
 | 
				
			||||||
<div class="news">
 | 
					<div class="news">
 | 
				
			||||||
      <h2>News</h2>
 | 
					      <h2>News</h2>
 | 
				
			||||||
 | 
					  <p><span class="date">22.7.2011:</span> Version 1.1.6 is
 | 
				
			||||||
 | 
					    <a href="download.html">released</a>!</p>
 | 
				
			||||||
 | 
					  <p>This release includes initial localization support and
 | 
				
			||||||
 | 
					    translations to French, German and Spanish.  This is thanks to the
 | 
				
			||||||
 | 
					    great work of Boris du Reau, and the teams from Tripoli France,
 | 
				
			||||||
 | 
					    Tripoli Spain and ERIG e.V.  If you prefer to use some other
 | 
				
			||||||
 | 
					    language than the system default, you can select the language on
 | 
				
			||||||
 | 
					    the "Options" tab of the preferences dialog.</p>
 | 
				
			||||||
 | 
					  <p>The release also includes design scaling support and numerous bug
 | 
				
			||||||
 | 
					    fixes.</p>
 | 
				
			||||||
  <p><span class="date">10.6.2011:</span> Version 1.1.5 is
 | 
					  <p><span class="date">10.6.2011:</span> Version 1.1.5 is
 | 
				
			||||||
    <a href="download.html">released</a>!</p>
 | 
					    <a href="download.html">released</a>!</p>
 | 
				
			||||||
  <p>This release includes updates to the printing system which fixes
 | 
					  <p>This release includes updates to the printing system which fixes
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,5 @@
 | 
				
			|||||||
<set stableversion="1.0.0">
 | 
					<set stableversion="1.0.0">
 | 
				
			||||||
<set developmentversion="1.1.5">
 | 
					<set developmentversion="1.1.6">
 | 
				
			||||||
<set version="${developmentversion}">
 | 
					<set version="${developmentversion}">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<def name="downloadbox">
 | 
					<def name="downloadbox">
 | 
				
			||||||
 | 
				
			|||||||
@ -9,6 +9,19 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  <!--- Remember to move the position of "onlyrecent" below! --->
 | 
					  <!--- Remember to move the position of "onlyrecent" below! --->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <p><span class="date">22.7.2011:</span> Version 1.1.6 is 
 | 
				
			||||||
 | 
					    <a href="download.html">released</a>!</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <p>This release includes initial localization support and
 | 
				
			||||||
 | 
					    translations to French, German and Spanish.  This is thanks to the
 | 
				
			||||||
 | 
					    great work of Boris du Reau, and the teams from Tripoli France,
 | 
				
			||||||
 | 
					    Tripoli Spain and ERIG e.V.  If you prefer to use some other
 | 
				
			||||||
 | 
					    language than the system default, you can select the language on
 | 
				
			||||||
 | 
					    the "Options" tab of the preferences dialog.</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <p>The release also includes design scaling support and numerous bug
 | 
				
			||||||
 | 
					    fixes.</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  <p><span class="date">10.6.2011:</span> Version 1.1.5 is 
 | 
					  <p><span class="date">10.6.2011:</span> Version 1.1.5 is 
 | 
				
			||||||
    <a href="download.html">released</a>!</p>
 | 
					    <a href="download.html">released</a>!</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -22,6 +35,10 @@
 | 
				
			|||||||
    Pedrick.  Printing still has a few issues on some platforms.
 | 
					    Pedrick.  Printing still has a few issues on some platforms.
 | 
				
			||||||
    Various bugs have also been fixed.</p>
 | 
					    Various bugs have also been fixed.</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <if not onlyrecent><!--- Older items not shown on download page:  --->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  <p><span class="date">6.10.2010:</span> Version 1.1.3 is 
 | 
					  <p><span class="date">6.10.2010:</span> Version 1.1.3 is 
 | 
				
			||||||
    <a href="download.html">released</a>!</p>
 | 
					    <a href="download.html">released</a>!</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -48,10 +65,6 @@
 | 
				
			|||||||
  <p>Simulation listeners written for older versions of OpenRocket
 | 
					  <p>Simulation listeners written for older versions of OpenRocket
 | 
				
			||||||
    are not compatible with this release.</p>
 | 
					    are not compatible with this release.</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
  <if not onlyrecent><!--- Older items not shown on download page:  --->
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  <p><span class="date">21.3.2010:</span> Version 1.1.0 is 
 | 
					  <p><span class="date">21.3.2010:</span> Version 1.1.0 is 
 | 
				
			||||||
    <a href="download.html">released</a>!</p>
 | 
					    <a href="download.html">released</a>!</p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user