Version 1.1.1
This commit is contained in:
parent
f7aa3e2d4b
commit
5b2c6d6ed5
@ -1,3 +1,7 @@
|
|||||||
|
2010-09-03 Sampo Niskanen
|
||||||
|
|
||||||
|
* Released version 1.1.1
|
||||||
|
|
||||||
2010-09-01 Sampo Niskanen
|
2010-09-01 Sampo Niskanen
|
||||||
|
|
||||||
* [BUG] Fixed rocket config dialog being too large
|
* [BUG] Fixed rocket config dialog being too large
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
OpenRocket 1.1.1 (2010-09-03):
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
Major rewrite of the simulation code, enhanced support for thrust
|
||||||
|
curve loading and selection, faster startup time and bug fixes.
|
||||||
|
|
||||||
|
Old simulation listeners are incompatible with this release.
|
||||||
|
|
||||||
|
|
||||||
OpenRocket 1.1.0 (2010-03-21):
|
OpenRocket 1.1.0 (2010-03-21):
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
# The OpenRocket build version
|
# The OpenRocket build version
|
||||||
|
|
||||||
build.version=1.1.1pre
|
build.version=1.1.1
|
||||||
|
|
||||||
|
|
||||||
# The source of the package. When building a package for a specific
|
# The source of the package. When building a package for a specific
|
||||||
|
@ -20,13 +20,14 @@ Steps for making a release:
|
|||||||
- select ReleaseNotes properties, set as release notes
|
- select ReleaseNotes properties, set as release notes
|
||||||
- select JAR properties, set release note file and default downloads
|
- select JAR properties, set release note file and default downloads
|
||||||
- select ZIP properties, set release note file
|
- select ZIP properties, set release note file
|
||||||
11. Update HTML: index.html (release notes) download.html (version number)
|
11. Update HTML: htp/htp.def (version number) htp/news.htp (release info)
|
||||||
12. Update HTML to web server:
|
12. Run "htp @" and check the web pages locally
|
||||||
|
13. Update HTML to web server:
|
||||||
scp * plaa,openrocket@web.sourceforge.net:htdocs/
|
scp * plaa,openrocket@web.sourceforge.net:htdocs/
|
||||||
13. Test downloading from Sourceforge and web site
|
14. Test downloading from Sourceforge and web site
|
||||||
14. Update update.php to web server:
|
15. Update update.php to web server:
|
||||||
scp updates.php plaa,openrocket@web.sourceforge.net:htdocs/actions/
|
scp updates.php plaa,openrocket@web.sourceforge.net:htdocs/actions/
|
||||||
15. Test update checking without specific options
|
16. Test update checking without specific options
|
||||||
16. Update build.properties to "pre" version + commit
|
17. Update build.properties to "pre" version + commit
|
||||||
17. Send email about new release to openrocket-announce@lists.sourceforge.net
|
18. Send email about new release to openrocket-announce@lists.sourceforge.net
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ $updates = "";
|
|||||||
if (preg_match("/^1\.1\.0/", $version)) {
|
if (preg_match("/^1\.1\.0/", $version)) {
|
||||||
$updates = "Version: 1.1.1\n" .
|
$updates = "Version: 1.1.1\n" .
|
||||||
"6: Enhanced motor selection\n" .
|
"6: Enhanced motor selection\n" .
|
||||||
"5: Rewritten simulation code" .
|
"5: Rewritten simulation code\n" .
|
||||||
"4: Bug fixes";
|
"4: Bug fixes";
|
||||||
} else if (preg_match("/^0\.9\.6/", $version)) {
|
} else if (preg_match("/^0\.9\.6/", $version)) {
|
||||||
$updates = "Version: 1.0.0\n" .
|
$updates = "Version: 1.0.0\n" .
|
||||||
|
@ -63,12 +63,12 @@
|
|||||||
<p>
|
<p>
|
||||||
<span class="licenseimage"><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="CC BY-SA" src="cc-by-sa-80x15.png" /></a></span>
|
<span class="licenseimage"><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="CC BY-SA" src="cc-by-sa-80x15.png" /></a></span>
|
||||||
<a href="techdoc.pdf">OpenRocket technical documentation</a> (2010-04-06)
|
<a href="techdoc.pdf">OpenRocket technical documentation</a> (2010-04-06)
|
||||||
<span class="note">(PDF 1.3MB)</span>
|
<span class="note">(PDF 1.3MB)</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<span class="licenseimage"><a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"><img alt="CC BY-NC-ND" src="cc-by-nc-nd-80x15.png" /></a></span>
|
<span class="licenseimage"><a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"><img alt="CC BY-NC-ND" src="cc-by-nc-nd-80x15.png" /></a></span>
|
||||||
<a href="thesis.pdf">Development of an Open Source model rocket simulation software</a> (Master's thesis)
|
<a href="thesis.pdf">Development of an Open Source model rocket simulation software</a> (Master's thesis)
|
||||||
<span class="note">(PDF 1.3MB)</span>
|
<span class="note">(PDF 1.3MB)</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<p>The technical documentation is licensed under a
|
<p>The technical documentation is licensed under a
|
||||||
|
@ -45,6 +45,15 @@
|
|||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="news">
|
<div class="news">
|
||||||
<h2>Recent news:</h2>
|
<h2>Recent news:</h2>
|
||||||
|
<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>
|
||||||
<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>
|
||||||
<p>This release includes the first support for loading RockSim
|
<p>This release includes the first support for loading RockSim
|
||||||
@ -58,11 +67,6 @@
|
|||||||
bug fixes. It is also a stable milestone, after which development
|
bug fixes. It is also a stable milestone, after which development
|
||||||
on larger features will be started in a 1.1 branch. Look out
|
on larger features will be started in a 1.1 branch. Look out
|
||||||
for it! :-)</p>
|
for it! :-)</p>
|
||||||
<p><span class="date">17.2.2010:</span> Version 0.9.6 is
|
|
||||||
<a href="download.html">released</a>!</p>
|
|
||||||
<p>This release updates the aerodynamic calculation methods to be
|
|
||||||
more in line with the Barrowman method and enhances the simulation
|
|
||||||
time step selection, in addition to fixing numerous bugs.</p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="contentholder">
|
<div class="contentholder">
|
||||||
<h2>Ready packages</h2>
|
<h2>Ready packages</h2>
|
||||||
@ -81,13 +85,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.0/OpenRocket-1.1.0.jar/download">
|
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.1/OpenRocket-1.1.1.jar/download">
|
||||||
<strong>Download now!</strong>
|
<strong>Download now!</strong>
|
||||||
<span>OpenRocket-1.1.0.jar</span>
|
<span>OpenRocket-1.1.1.jar</span>
|
||||||
</a>
|
</a>
|
||||||
<span class="alternative">
|
<span class="alternative">
|
||||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.0/ReleaseNotes/view">Release notes</a> |
|
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.1/ReleaseNotes/view">Release notes</a> |
|
||||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.0/OpenRocket-1.1.0-src.zip/download">Source code</a>
|
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.1/OpenRocket-1.1.1-src.zip/download">Source code</a>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<h3>Stable release</h3>
|
<h3>Stable release</h3>
|
||||||
@ -104,7 +108,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.0.jar</span></p>
|
<span class="command">java -jar OpenRocket-1.1.1.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.0/OpenRocket-1.1.0.jar/download">
|
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.1/OpenRocket-1.1.1.jar/download">
|
||||||
<strong>Download now!</strong>
|
<strong>Download now!</strong>
|
||||||
<span>OpenRocket-1.1.0.jar</span>
|
<span>OpenRocket-1.1.1.jar</span>
|
||||||
</a>
|
</a>
|
||||||
<span class="alternative">
|
<span class="alternative">
|
||||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.0/ReleaseNotes/view">Release notes</a> |
|
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/1.1.1/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,15 @@
|
|||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<div class="news">
|
<div class="news">
|
||||||
<h2>News</h2>
|
<h2>News</h2>
|
||||||
|
<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>
|
||||||
<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>
|
||||||
<p>This release includes the first support for loading RockSim
|
<p>This release includes the first support for loading RockSim
|
||||||
|
@ -1 +0,0 @@
|
|||||||
scp *.html plaa,openrocket@web.sourceforge.net:htdocs/
|
|
@ -1,5 +1,5 @@
|
|||||||
<set stableversion="1.0.0">
|
<set stableversion="1.0.0">
|
||||||
<set developmentversion="1.1.0">
|
<set developmentversion="1.1.1">
|
||||||
<set version="${developmentversion}">
|
<set version="${developmentversion}">
|
||||||
|
|
||||||
<def name="downloadbox">
|
<def name="downloadbox">
|
||||||
|
@ -9,6 +9,18 @@
|
|||||||
|
|
||||||
<!--- Remember to move the position of "onlyrecent" below! --->
|
<!--- Remember to move the position of "onlyrecent" below! --->
|
||||||
|
|
||||||
|
<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>
|
||||||
|
|
||||||
<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>
|
||||||
|
|
||||||
@ -26,6 +38,10 @@
|
|||||||
on larger features will be started in a 1.1 branch. Look out
|
on larger features will be started in a 1.1 branch. Look out
|
||||||
for it! :-)</p>
|
for it! :-)</p>
|
||||||
|
|
||||||
|
|
||||||
|
<if not onlyrecent><!--- Older items not shown on download page: --->
|
||||||
|
|
||||||
|
|
||||||
<p><span class="date">17.2.2010:</span> Version 0.9.6 is
|
<p><span class="date">17.2.2010:</span> Version 0.9.6 is
|
||||||
<a href="download.html">released</a>!</p>
|
<a href="download.html">released</a>!</p>
|
||||||
|
|
||||||
@ -33,10 +49,6 @@
|
|||||||
more in line with the Barrowman method and enhances the simulation
|
more in line with the Barrowman method and enhances the simulation
|
||||||
time step selection, in addition to fixing numerous bugs.</p>
|
time step selection, in addition to fixing numerous bugs.</p>
|
||||||
|
|
||||||
|
|
||||||
<if not onlyrecent><!--- Older items not shown on download page: --->
|
|
||||||
|
|
||||||
|
|
||||||
<p><span class="date">28.11.2009:</span> Version 0.9.5 is
|
<p><span class="date">28.11.2009:</span> Version 0.9.5 is
|
||||||
<a href="download.html">released</a>!</p>
|
<a href="download.html">released</a>!</p>
|
||||||
|
|
||||||
|
3
web/update-html.sh
Executable file
3
web/update-html.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
htp @ || exit 1
|
||||||
|
scp html/*.html plaa,openrocket@web.sourceforge.net:htdocs/
|
Loading…
x
Reference in New Issue
Block a user