Skip to content

Commit acc56e6

Browse files
committed
1.5.3
1 parent 3e03ceb commit acc56e6

10 files changed

+10
-10
lines changed

doc/global.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-ig
267267
<br class="clear">
268268

269269
<footer>
270-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Thu Jan 14 2021 12:27:53 GMT+0100 (Central European Standard Time)
270+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Tue Mar 09 2021 10:01:11 GMT+0100 (Central European Standard Time)
271271
</footer>
272272

273273
<script> prettyPrint(); </script>

doc/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-ig
5656
<br class="clear">
5757

5858
<footer>
59-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Thu Jan 14 2021 12:27:53 GMT+0100 (Central European Standard Time)
59+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Tue Mar 09 2021 10:01:11 GMT+0100 (Central European Standard Time)
6060
</footer>
6161

6262
<script> prettyPrint(); </script>

doc/module-igc-xc-score.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-ig
574574
<br class="clear">
575575

576576
<footer>
577-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Thu Jan 14 2021 12:27:53 GMT+0100 (Central European Standard Time)
577+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Tue Mar 09 2021 10:01:11 GMT+0100 (Central European Standard Time)
578578
</footer>
579579

580580
<script> prettyPrint(); </script>

doc/scoring-rules.config.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-ig
171171
<br class="clear">
172172

173173
<footer>
174-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Thu Jan 14 2021 12:27:53 GMT+0100 (Central European Standard Time)
174+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Tue Mar 09 2021 10:01:11 GMT+0100 (Central European Standard Time)
175175
</footer>
176176

177177
<script> prettyPrint(); </script>

doc/solver.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-ig
171171
<br class="clear">
172172

173173
<footer>
174-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Thu Jan 14 2021 12:27:53 GMT+0100 (Central European Standard Time)
174+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Tue Mar 09 2021 10:01:11 GMT+0100 (Central European Standard Time)
175175
</footer>
176176

177177
<script> prettyPrint(); </script>

igc-xc-score.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.cjs.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.es.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6707,7 +6707,7 @@ function findClosestPairIn2Segments(p1, p2, opt) {
67076707
const precomputedNext = precomputedAll.reduce((a, x) => (!a || x.out < a.out) ? x : a, undefined);
67086708
const lastUnknown = precomputedNext !== undefined ? precomputedNext.maxY : opt.landing;
67096709
let min = { d: Infinity };
6710-
for (let i = p2; i < lastUnknown; i++) {
6710+
for (let i = p2; i <= lastUnknown; i++) {
67116711
const pout = opt.flight.flightPoints[i];
67126712
const n = rtree.neighbors(pout.x * lc, pout.y, 1)[0] + opt.launch;
67136713
if (n !== undefined) {

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "igc-xc-score",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"description": "igc-xc-score is a paragliding and hang-gliding XC scoring program in vanilla JS",
55
"main": "index.cjs.js",
66
"module": "index.es.js",

0 commit comments

Comments
 (0)