Release 12.09.1
This commit is contained in:
parent
3b368ac270
commit
8fbbb00387
@ -1,3 +1,6 @@
|
||||
2012-09-28 Sampo Niskane
|
||||
* Released version 12.09.1
|
||||
|
||||
2012-09-25 Doug Pedrick
|
||||
|
||||
* Added preference to open last edited design file upon startup.
|
||||
@ -6,6 +9,9 @@
|
||||
|
||||
* Cleaned up Swing listeners of Configuration (memory leak).
|
||||
|
||||
2012-09-16 Sampo Niskanen
|
||||
* Released version 12.09
|
||||
|
||||
2012-08-28 Bill Kuker
|
||||
|
||||
* Removed late GL initialization, was causing issues with Java 7.
|
||||
|
@ -1,3 +1,11 @@
|
||||
OpenRocket 12.09.1 (2012-06-28):
|
||||
--------------------------------
|
||||
|
||||
Bug-fix release for 12.09, fixing numerous bugs. Only new feature is
|
||||
the possiblity to automatically open the latest design file on startup
|
||||
(in Edit -> Preferences -> Options).
|
||||
|
||||
|
||||
OpenRocket 12.09 (2012-09-16):
|
||||
-------------------------------
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# The OpenRocket build version
|
||||
|
||||
build.version=12.09dev
|
||||
build.version=12.09.1
|
||||
|
||||
|
||||
# The source of the package. When building a package for a specific
|
||||
|
@ -80,10 +80,15 @@ header("Content-type: text/plain");
|
||||
$version = $_GET["version"];
|
||||
$updates = "";
|
||||
|
||||
$unstable = "12.09";
|
||||
$unstable = "12.09.1";
|
||||
$stable = "1.0.0";
|
||||
|
||||
if (preg_match("/^12.03$/", $version)) {
|
||||
|
||||
if (preg_match("/^12.09$/", $version)) {
|
||||
$updates = "Version: " . $unstable . "\n" .
|
||||
"4: Bug fixes\n" .
|
||||
"";
|
||||
} else if (preg_match("/^12.03$/", $version)) {
|
||||
$updates = "Version: " . $unstable . "\n" .
|
||||
"10: 3D design view\n" .
|
||||
"9: Component presets\n" .
|
||||
|
@ -48,6 +48,11 @@
|
||||
<div class="content">
|
||||
<div class="news">
|
||||
<h2>Recent news:</h2>
|
||||
<p><span class="date">28.9.2012:</span> Version 12.09.1 is
|
||||
<a href="download.html">released</a>! This is a bug-fix release,
|
||||
fixing numerous bugs introduced in 12.09. The only new feature is
|
||||
the option to automatically open the latest design file on startup
|
||||
(in <em>Edit</em> → <em>Preferences</em> → <em>Options</em>).
|
||||
<p><span class="date">23.9.2012:</span> Version 12.09 for Android is
|
||||
<a href="download.html">released</a>! The major improvement is the
|
||||
possibility to edit simulation parameters, thanks to work by Kevin
|
||||
@ -69,22 +74,6 @@
|
||||
<li>Calibration rulers added to printed templates</li>
|
||||
<li>Translations in Czech and Polish, numerous updates</li>
|
||||
</ul>
|
||||
<p><span class="date">10.3.2012:</span> Version 12.03 for desktop
|
||||
and Android is <a href="download.html">released</a>!</p>
|
||||
<p>In this release the version numbering scheme has been changed.
|
||||
From now on the version number is <em>YY.MM</em> indicating the
|
||||
year and month of the release. Bug fix releases are indicated by
|
||||
an added "<em>.1</em>".</p>
|
||||
<p>This also marks the first release for Android devices. In this
|
||||
first release you can open files and examine existing simulations,
|
||||
stability data and motor files. The Android port is thanks to
|
||||
work by Kevin Ruland.</p>
|
||||
<p>Enhancements in the desktop version include saving designs in RKT
|
||||
format thanks to Doug Pedrick, freeform fin set import form images
|
||||
by Jason Blood, configurable stage separation
|
||||
events, guided help tours and displaying the computed motor
|
||||
designation class. The application has also been translated to
|
||||
Italian by Mauro Biasutti and Russian by the Sky Dart Team.</p>
|
||||
</div>
|
||||
<div class="contentholder">
|
||||
<h2>Ready packages</h2>
|
||||
@ -105,20 +94,20 @@
|
||||
<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 class="downloadbox">
|
||||
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09/OpenRocket-12.09.jar/download">
|
||||
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09.1/OpenRocket-12.09.1.jar/download">
|
||||
<strong>Download now!</strong>
|
||||
<span>OpenRocket-12.09.jar</span>
|
||||
<span>OpenRocket-12.09.1.jar</span>
|
||||
</a>
|
||||
<span class="alternative">
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09/ReleaseNotes/view">Release notes</a> |
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09/OpenRocket-12.09-src.zip/download">Source code</a>
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09.1/ReleaseNotes/view">Release notes</a> |
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09.1/OpenRocket-12.09.1-src.zip/download">Source code</a>
|
||||
</span>
|
||||
</div>
|
||||
<p>OpenRocket can be started in most graphical environments (including
|
||||
Windows) by double-clicking the package icon. No installation is
|
||||
required.</p>
|
||||
<p>From the command line OpenRocket can be started by
|
||||
<span class="command">java -jar OpenRocket-12.09.jar</span></p>
|
||||
<span class="command">java -jar OpenRocket-12.09.1.jar</span></p>
|
||||
<h3>Android version</h3>
|
||||
<p>The Android version allows opening OpenRocket files, viewing
|
||||
simulations and motors. Later versions will allow running
|
||||
|
@ -49,12 +49,12 @@
|
||||
<h2>Introduction</h2>
|
||||
<div class="rightpane">
|
||||
<div class="downloadbox">
|
||||
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09/OpenRocket-12.09.jar/download">
|
||||
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09.1/OpenRocket-12.09.1.jar/download">
|
||||
<strong>Download now!</strong>
|
||||
<span>OpenRocket-12.09.jar</span>
|
||||
<span>OpenRocket-12.09.1.jar</span>
|
||||
</a>
|
||||
<span class="alternative">
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09/ReleaseNotes/view">Release notes</a> |
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09.1/ReleaseNotes/view">Release notes</a> |
|
||||
<a href="download.html">Other versions</a>
|
||||
</span>
|
||||
</div>
|
||||
@ -96,6 +96,11 @@
|
||||
<div class="clear"></div>
|
||||
<div class="news">
|
||||
<h2>News</h2>
|
||||
<p><span class="date">28.9.2012:</span> Version 12.09.1 is
|
||||
<a href="download.html">released</a>! This is a bug-fix release,
|
||||
fixing numerous bugs introduced in 12.09. The only new feature is
|
||||
the option to automatically open the latest design file on startup
|
||||
(in <em>Edit</em> → <em>Preferences</em> → <em>Options</em>).
|
||||
<p><span class="date">23.9.2012:</span> Version 12.09 for Android is
|
||||
<a href="download.html">released</a>! The major improvement is the
|
||||
possibility to edit simulation parameters, thanks to work by Kevin
|
||||
|
@ -1,4 +1,4 @@
|
||||
<set version="12.09">
|
||||
<set version="12.09.1">
|
||||
<set androidversion="12.09">
|
||||
|
||||
<def name="downloadbox">
|
||||
|
@ -9,6 +9,12 @@
|
||||
|
||||
<!--- Remember to move the position of "onlyrecent" below! --->
|
||||
|
||||
<p><span class="date">28.9.2012:</span> Version 12.09.1 is
|
||||
<a href="download.html">released</a>! This is a bug-fix release,
|
||||
fixing numerous bugs introduced in 12.09. The only new feature is
|
||||
the option to automatically open the latest design file on startup
|
||||
(in <em>Edit</em> → <em>Preferences</em> → <em>Options</em>).
|
||||
|
||||
<p><span class="date">23.9.2012:</span> Version 12.09 for Android is
|
||||
<a href="download.html">released</a>! The major improvement is the
|
||||
possibility to edit simulation parameters, thanks to work by Kevin
|
||||
@ -35,6 +41,10 @@
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<if not onlyrecent><!--- Older items not shown on download page: --->
|
||||
|
||||
|
||||
<p><span class="date">10.3.2012:</span> Version 12.03 for desktop
|
||||
and Android is <a href="download.html">released</a>!</p>
|
||||
|
||||
@ -55,10 +65,6 @@
|
||||
designation class. The application has also been translated to
|
||||
Italian by Mauro Biasutti and Russian by the Sky Dart Team.</p>
|
||||
|
||||
|
||||
<if not onlyrecent><!--- Older items not shown on download page: --->
|
||||
|
||||
|
||||
<p><span class="date">24.11.2011:</span> Version 1.1.9 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user