Skip to content

Commit

Permalink
Version 3.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ezze committed Nov 26, 2018
2 parents a02152d + 7b00ec4 commit 9e134c2
Show file tree
Hide file tree
Showing 24 changed files with 2,534 additions and 6,159 deletions.
9 changes: 7 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"presets": [
"env",
"stage-3"
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
["@babel/plugin-proposal-class-properties", { "loose": false }],
"@babel/plugin-proposal-json-strings"
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
/lib
/sgp4_verification/lib/sgp4
*.log
package-lock.json

4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
language: node_js
node_js:
- "11"
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
branches:
only:
- master
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
## Changelog

### 3.0.0 (2018-11-26)

- Node.js 4 support is dropped (breaking change).
- Deprecated functions `gstimeFromJday` and `gstimeFromDate` are removed (breaking change).
- New transformation functions are added: `radiansToDegrees`, `degreesToRadians`, `radiansLat`, `radiansLong`.

### 2.0.3 (2018-09-15)

- `satrec` object is not cloned in `sgp4` and `sg4init` functions due to performance reasons.
- `satrec` object is not cloned in `sgp4` and `sgp4init` functions due to [performance reasons](https://github.com/shashwatak/satellite-js/issues/45).

### 2.0.2 (2018-04-16)

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Special thanks to all contributors for improving usability and bug fixes :)
- [davidcalhoun (David Calhoun)](https://github.com/davidcalhoun)
- [tikhonovits (Nikos Sagias)](https://github.com/tikhonovits)
- [dangodev (Drew Powers)](https://github.com/dangodev)
- [thkruz (Theodore Kruczek)](https://github.com/thkruz)
- [bakercp (Christopher Baker)](https://github.com/bakercp)
- [drom (Aliaksei Chapyzhenka)](https://github.com/drom)
- [PeterDaveHello (Peter Dave Hello)](https://github.com/PeterDaveHello)
Expand All @@ -35,6 +36,8 @@ Special thanks to all contributors for improving usability and bug fixes :)

If you want to contribute to the project please read the [Contributing](#contributing) section first.

Sites using the library can be found [here](https://github.com/shashwatak/satellite-js/wiki/Sites-using-satellite.js).

**Start Here:**

- [TS Kelso's Columns for Satellite Times](http://celestrak.com/columns/), Orbital Propagation Parts I and II a must!
Expand Down Expand Up @@ -114,6 +117,8 @@ define(['path/to/dist/satellite'], function(satellite) {
});
```

[Here is a repo](https://github.com/solarpatrol/satellite-requirejs) showing basic library usage with Require.js.

### Script tag

Include `dist/satellite.min.js` as a script in your html:
Expand Down
Loading

0 comments on commit 9e134c2

Please sign in to comment.